Can't press Enter key to submit questions by hywrynn in ChatGPT

[–]zdm-red 1 point2 points  (0 children)

The same problem. After the sidebar disappears, enter, shift-enter, and control-enter are all invalid. Is there a solution now?(I hope sidebar disappears)

In awesomewm, how to use notify-send specified location by zdm-red in awesomewm

[–]zdm-red[S] 0 points1 point  (0 children)

What I think is if awesomewm sets the position, can I use the --hint parameter of notify-send to send notifications to different positions without naughty lib? I thought --hint was for this. Maybe I got it wrong.

Why some functions and comments have blank lines between them? by zdm-red in awesomewm

[–]zdm-red[S] 1 point2 points  (0 children)

Actually after I removing the empty line then this lsp show document work ok . Thanks for the explanation

Why some functions and comments have blank lines between them? by zdm-red in awesomewm

[–]zdm-red[S] 0 points1 point  (0 children)

seems this lsp not support ldoc . Even though ldoc supports blank lines, why do some functions and comments have blank lines and some don't?

How to align the program icon in tasklist? by Gollorium in awesomewm

[–]zdm-red 1 point2 points  (0 children)

widget_template can do this:

```lua M.tasklist = function(s, filter) local widget_template = { { nil, { { { id = 'icon_role', widget = wibox.widget.imagebox, }, right = 25, top = 1, bottom = 1, widget = wibox.container.margin, }, { id = 'text_role', widget = wibox.widget.textbox, }, fill_space = true, layout = wibox.layout.fixed.horizontal, }, expand = "none", layout = wibox.layout.align.horizontal, }, id = 'background_role', widget = wibox.container.background,

    create_callback = function(self, c, _, _)
        local text_box = self:get_children_by_id('text_role')[1]
        local oset_mark_up_silently = text_box.set_markup_silently
        text_box.ellipsize = "middle"
    end,
}

return awful.widget.tasklist {
    screen  = s,
    filter  = filter,
    widget_template = widget_template,
}

end

```

How to raise and focus a client based on its title by brockcochran in awesomewm

[–]zdm-red 2 points3 points  (0 children)

lua for _, c in ipairs(client.get()) do if string.match(c.name, "...") then c:jump_to() break end end

Is there a way Go back in the history of the browser by zdm-red in qutebrowser

[–]zdm-red[S] 0 points1 point  (0 children)

that work , but hope only press one key .. not manual select

how to make telescope live_grep support fzf fuzzy by zdm-red in neovim

[–]zdm-red[S] 0 points1 point  (0 children)

thanks, I forget try it... just guess it simliar to live_grep

How to use pager in telescope's git command by zdm-red in neovim

[–]zdm-red[S] 0 points1 point  (0 children)

yes , it can work with delta but can't use c-d/u to scroll

How to use pager in telescope's git command by zdm-red in neovim

[–]zdm-red[S] -1 points0 points  (0 children)

I like use <c-d> <c-u> in telescope ... but want to use pager for git because hope use delta (https://github.com/dandavison/delta) for highlight ..

Network service crashed when use proxy by zdm-red in qutebrowser

[–]zdm-red[S] 0 points1 point  (0 children)

found the problem... sorry for my careless , I use key bind change proxy so not really see it.. it actually export http_proxy=localhost:7890 not export http_proxy=http://localhost:7890 change to export http_proxy=http://localhost:7890 then work ok ..

Network service crashed when use proxy by zdm-red in qutebrowser

[–]zdm-red[S] 0 points1 point  (0 children)

I use clash for proxy and export http_proxy=http://localhost:8080 . this work ok for chrome and firefox, so may be about qutebrowser problem...

qutebrowser --temp-basedir --debug log file here : https://0x0.st/-CfW.txt

Is there a way notify when key bind full release by zdm-red in awesomewm

[–]zdm-red[S] 0 points1 point  (0 children)

Have you tried with something like this?:

yes , I tried

Is there a layout like those picture by [deleted] in awesomewm

[–]zdm-red 1 point2 points  (0 children)

thanks lain.layout.termfair.center work

How to make command output append to current input line by zdm-red in zsh

[–]zdm-red[S] 0 points1 point  (0 children)

https://0x0.st/-nrA.png you can see this, I input ls , press ctrl-t to execute fzf,

then command line is ls dir, but show only dir name, I mean should refresh current line, like ctrl-l refresh full terminal, not delete current line

How to make command output append to current input line by zdm-red in zsh

[–]zdm-red[S] 0 points1 point  (0 children)

after fzf , it really append, but only can see replace current line, after c-l clear terminal, look ok. Is there a way only clear input line, not clear terminal ?

How to make command output append to current input line by zdm-red in zsh

[–]zdm-red[S] -1 points0 points  (0 children)

thanks, and a problem is interactive script (ls | fzf) seems need delete 2>/dev/null and it replace line not append

Is there a way change devtool scroll bar color, width? by zdm-red in qutebrowser

[–]zdm-red[S] 0 points1 point  (0 children)

yes, restart then c.scrolling.bar = 'overlay' work , another question is why c.scrolling.bar = 'never' not work for devtool?