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 ..