helix/book/src/from-vim.md

13 lines
684 B
Markdown
Raw Normal View History

# Migrating from Vim
2022-09-17 13:34:48 +02:00
Helix's editing model is strongly inspired from Vim and Kakoune, and a notable
difference from Vim (and the most striking similarity to Kakoune) is that Helix
follows the `selection → action` model. This means that the whatever you are
going to act on (a word, a paragraph, a line, etc) is selected first and the
action itself (delete, change, yank, etc) comes second. A cursor is simply a
single width selection.
2022-06-16 00:04:17 +08:00
See also Kakoune's [Migrating from Vim](https://github.com/mawww/kakoune/wiki/Migrating-from-Vim) and Helix's [Migrating from Vim](https://github.com/helix-editor/helix/wiki/Migrating-from-Vim).
2022-06-01 12:01:37 -05:00
> TODO: Mention textobjects, surround, registers