Michael Davis
Michael Davis
I'm not sure the first/last variants are necessary: they can be emulated for the most part by `gg]f` and `ge[f` (except for when there are no functions/classes/diagnostics/etc). It would be...
> Also what is a good place to ask the more experienced contributors here questions about what is the best way to implement something? The Matrix room seems to be...
I could see `]F`/`[F` as useful and maybe `]T`/`[T` but I doubt that jumping to the first/last comment, parameter or class would be practically useful. And even for `]F`/`[F`/`]T`/`[T`, for...
https://github.com/helix-editor/helix/pull/4535/files is a good example of this - instead of modifying the existing diagnostics statusline element, this should be a new statusline element that you can configure
Should this element only contain workspace diagnostics? Currently it has `document / workspace` but I think the workspace one could be its own element and then users can organize the...
It looks like it might need some extra non-LSP config. Here's what sublime configures: https://github.com/sublimelsp/LSP-volar/blob/1a52710ba115cd1bfe958777b0d16721b5745ec1/LSP-volar.sublime-settings I don't see any references to `documentFeatures` in the LSP spec so I assume that...
Textobject navigation uses tree-sitter queries (https://docs.helix-editor.com/master/guides/textobject.html) not LSP
#2311 covers this: injections are used for syntax highlighting but don't currently affect textobjects or tree-sitter motions
IMO file management bumps with the idea of a text editor. I think supporting file management through `:sh` and a file variable in a custom keymap would be ok (so...