helix
helix copied to clipboard
A post-modern modal text editor.
### Summary The test suite for Helix assumes that Helix is using the default config. If Helix - correctly - loads a custom user config which causes the test suite's...
Reference: https://github.com/mawww/kakoune/issues/64
Now the editor can fill **very** large terminals. Changed/removed tests which check the truncating behavior. Closes #4283
The debug assertion that document diagnostics are sorted incorrectly panics for cases like `[161..164, 162..162]`. The merging behavior in the following lines that relies on the assertion only needs the...
Added `popup-frame` config option. Before:  After: 
Fixes: [#2019](https://github.com/helix-editor/helix/issues/2019) This fixes a couple situations I found that cause undesired behavior when incrementing integers: ### Trailing underscores, eg: `9_`. When incrementing can cause an infinite loop. I fixed...
Fixed cursorline background color in papercolor-dark theme. Previously the cursorline background color was `#d0d0d0` which does not match the theme, so it is changed to `#303030`
Info logs don't show up in the log file by default, but this line should: failures to load tree-sitter parser objects are useful errors. A parser might fail to load...
This fixes two issues with spaces handling in file names for auto completion: 1. the code so far did not use `shellworlds::shellwords` for handling completion. This is now corrected so...
#4211 Hi! @the-mikedavis I'm trying to implement LSP and syntax highlighting for groovy. The LSP sorta works though it seems a little slow. But my main problem is trying to...