Michael Davis

Results 847 comments of Michael Davis

`.helix/languages.toml` and `.helix/config.toml` also work in the global gitignore. I also don't see the advantage to using `config.local.toml` and `languages.local.toml`: it should be equivalent to `.helix/config.toml` and `.helix/languages.toml` respectively, no?

Oh I see, `config.local.toml` would be in addition to `.helix/config.toml`, right? For scenarios like this I think it would be better to make use of the `-c ` CLI option...

https://github.com/tree-sitter/tree-sitter-rust/pull/168 looks promising for this. It works the same as https://github.com/helix-editor/helix/pull/4870

I think it's a little disorienting to modify the label that you're trying to jump to. Instead we could remove the labels that can no longer be entered but keep...

Good catch! Would you like to submit a PR to fix it?

I'm not sure this is a good idea but I think we could re-implement `C-i`/`C-s`/`C-o` as marks commands. The jumplist register would need to be handled uniquely though so it...

We always center when jumping or opening at a location. In the long run I think this could be solved with scripting a command on startup to do `ge` but...

I'm saying that any time we open a location - from pickers for example but also any LSP motion, `:open`, etc. - we center. Motions like `j` or `G` are...

This is a consequence of #9122. We should add an `else` clause here: https://github.com/helix-editor/helix/blob/88d455afebb581bc607d12f04448fe6d8a21baa2/helix-term/src/ui/statusline.rs#L124 that fits as much of the left statusline as will fit, or tries to truncate the...

I think the changes are still good - with the old render functions we couldn't middle-align the center statusline part like in #9950 or do the truncation I mentioned above....