71b6cc4d17
This is a basic example of a remappable command specific to a single Component. It could be remapped like so: ```toml [keys.buffer-picker] C-d = "close_buffer_in_buffer_picker" ``` This has some rough edges: * Can we namespace the commands so they don't all have to be very long and specific about which component they work for? * How can we make this work for generics? * We can't define commands that operate on a `Picker<_>` for example. This example only works because we're using a `Picker<BufferMeta>`. * For Pickers and Menus we could use a `Vec<Box<dyn Item>>` and drop the generics but that would lose static dispatch. * Could we separate the part that needs generics into a different struct and have the functions operate on that? |
1 year ago | |
---|---|---|
.cargo | 2 years ago | |
.github | 1 year ago | |
book | 1 year ago | |
contrib | 2 years ago | |
docs | 1 year ago | |
helix-core | 1 year ago | |
helix-dap | 2 years ago | |
helix-loader | 1 year ago | |
helix-lsp | 2 years ago | |
helix-parsec | 2 years ago | |
helix-term | 1 year ago | |
helix-tui | 1 year ago | |
helix-vcs | 1 year ago | |
helix-view | 1 year ago | |
runtime | 1 year ago | |
xtask | 2 years ago | |
.envrc | 3 years ago | |
.gitattributes | 2 years ago | |
.gitignore | 2 years ago | |
.ignore | 2 years ago | |
CHANGELOG.md | 1 year ago | |
Cargo.lock | 1 year ago | |
Cargo.toml | 2 years ago | |
LICENSE | 4 years ago | |
README.md | 2 years ago | |
VERSION | 2 years ago | |
base16_theme.toml | 2 years ago | |
default.nix | 2 years ago | |
flake.lock | 2 years ago | |
flake.nix | 1 year ago | |
grammars.nix | 2 years ago | |
languages.toml | 1 year ago | |
logo.svg | 2 years ago | |
logo_dark.svg | 2 years ago | |
logo_light.svg | 2 years ago | |
rust-toolchain.toml | 2 years ago | |
rustfmt.toml | 3 years ago | |
screenshot.png | 3 years ago | |
shell.nix | 2 years ago | |
theme.toml | 2 years ago |
README.md
A Kakoune / Neovim inspired editor, written in Rust.
The editing model is very heavily based on Kakoune; during development I found myself agreeing with most of Kakoune's design decisions.
For more information, see the website or documentation.
All shortcuts/keymaps can be found in the documentation on the website.
Features
- Vim-like modal editing
- Multiple selections
- Built-in language server support
- Smart, incremental syntax highlighting and code editing via tree-sitter
It's a terminal-based editor first, but I'd like to explore a custom renderer (similar to Emacs) in wgpu or skulpin.
Note: Only certain languages have indentation definitions at the moment. Check
runtime/queries/<lang>/
for indents.scm
.
Installation
Contributing
Contributing guidelines can be found here.
Getting help
Your question might already be answered on the FAQ.
Discuss the project on the community Matrix Space (make sure to join #helix-editor:matrix.org
if you're on a client that doesn't support Matrix Spaces yet).
Credits
Thanks to @JakeHL for designing the logo!