helix
helix copied to clipboard
A post-modern modal text editor.
Don't know if this has been discussed already but I couldn't find any issue about it. I'm a heavy user of Emacs in server mode and emacsclient to open files...
Trying to find references for example in goto_reference in commands.rs brings up a lot of duplicate matches. This change removes the duplicates from lsp goto_* commands. Before:  After: 
Closes #2479 and is a prerequisite for #1125. Also probably supersedes #588. I don't think this is quite ready to merge but it's definitely due for some reviewing. Functionality works...
Implements https://github.com/helix-editor/helix/issues/165#issuecomment-1216566867 Changes 'match inside/around' bindings for: - type definition from `c` to `t` - comments from `o` to `c` - tests from `t` to `T` Also changes those for...
Appending to the log file can cause write amplification on SSDs causing lots of unnecessary wear so I propose adding a configuration entry to disable it. The proposed changes do...
The current layout for the diagnostics picker is not that great. The file path takes up a lot of space (for example `\c\U\a\s\h\h\s\c\lsp.rs`) and most of the diagnostic text is...
The change resolves #3832. I need help to complete the tree-sitter configuration.
Fixed readability of highlighted text on the rose_pine themes using the official palettes. Previews (after and before) Rosé Pine Dawn  Rosé Pine Moon ![Captura...
### Summary When starting `hx` with no file arguments, (e.g. `hx`, `hx -vvv`, but not `hx path` or `hx --tutor`) it hangs indefinitely at startup. I noticed that this seems...
Currently if you configure any auto pairs with multi-byte Unicode characters, auto pairing does not produce a correct selection. This is because it is summing bytes, when it should be...