helix
helix copied to clipboard
A post-modern modal text editor.
### Summary Certain markdown files are very slow to edit. In particular when they have a lot of lists. For example a `CHANGELOG.md` file from the helix repo is a...
Changelog notes for the next release 🚀 Update: time is a bit short in July so we'll shoot to release in the first ~week~ half of August as 22.08
I added `normal-mode-name`, `insert-mode-name`, and `select-mode-name` as keys in the `[editor.statusline]` section of the configuration file. Changing these will change the text displayed by the "mode" element of the statusline....
I needed to write a general text wrapper for #2184 because I kept dealing with broken behavior and painful debugging. This should make it possible to unit-test and be usable...
Closes #279. This changeset currently implements partial support for EditorConfig. Here's what it includes: * Full support for EditorConfig's globbing style. * The `indent_size`, `indent_style`, `tab_width`, `charset`, and `end_of_line` properties....
Closes #2171
This implementation is probably ugly. Any pointers to make it cleaner is much appreciated! It works, tested with `elvish`, `bash`, `zsh` and `sh`. It correctly disables `C-z` for `elvish` but...
Hi! This PR adds an additional command to run a shell command ignoring the output. The command is `:run-shell-command-no-output` (alias `:sh!`). I'm a bit uncertain about the usage of `ShellBehavior::Ignore`...
cc @the-mikedavis Example ```rust use inline_python::python; fn main() { let who = "world"; let n = 5; python! { import csv # first import highlight won't work, not sure why...