Helix is a modal text editor written in Rust that draws inspiration from Kakoune and Neovim.
The editor addresses the need for a modern modal editing experience by adopting Kakoune's editing model as its foundation. The design emphasizes multiple selections, allowing users to perform operations across several cursors simultaneously. It integrates language server protocol support directly into the editor and uses tree-sitter for syntax highlighting and code editing, enabling smart, incremental analysis of code as you type.
Helix suits developers who are comfortable with modal editing and want a terminal-based editor with contemporary language tooling built in. It works well for projects where tree-sitter support exists for your language, since indentation definitions and other language-specific features depend on this. The editor is primarily terminal-based, though the README notes interest in exploring a custom graphical renderer using wgpu in the future. If you are already familiar with Vim or Kakoune, the modal editing paradigm will feel natural; if you prefer Emacs-style editing or graphical interfaces, this tool may require adjustment.
Development on the project shows consistent activity with regular commits addressing bug fixes, feature additions, and maintenance tasks. The maintainers actively engage with the community through a dedicated Matrix space for discussion and support. Documentation is maintained alongside the codebase, including installation guides, keymaps, and troubleshooting resources. The project accepts contributions through a formal process documented in the repository.