Michael Davis

Results 843 comments of Michael Davis

> The scenario outlined in #1704 is definitely valid and I’d consider it an edge case. The workaround (double enter) isn’t really a difficult one. Double `Enter` isn't a workaround...

Oh actually I see the behavior I think you're talking about now: `Enter` closes the completion menu when you have a selection. > OK, so how to I select any...

I can't reproduce that but I'm not sure that I'm following the steps correctly. Can you create an asciinema recording with the crash?

Scrollbar seems doable and I would argue belongs in the core. Minimap is probably very hard to accomplish without a GUI though and I don't know how I would feel...

Thanks! Could you add a pointer in the language server wiki for installing serve-d? https://github.com/helix-editor/helix/wiki/How-to-install-the-default-language-servers

That might work but I like the current system where a key not found in a pending key sequence cancels the sequence (see [here](https://github.com/helix-editor/helix/blob/0035c29fc16f6c795257e241fddd9f2178bc4b4c/helix-term/src/keymap.rs#L303-L355)). Kakoune has an interesting way of...

Global search will use the `/` register as a default. Instead of yanking and pasting from the `"` register, you can use `*` to save the current selection to the...

I don't think we implement the `#` special register from Kakoune yet (https://github.com/mawww/kakoune/blob/master/doc/pages/registers.asciidoc#special-registers) but `"#` and `"#` could be an nice way to do this without needing to add a...

I think it would be ok to kind of hack it in this PR: in `increment_impl` check the `cx.register` to see if it's `'#'` and if it is then increment...