2021-08-18 08:53:50 +08:00
# Migrating from Vim
2022-09-17 19:34:48 +08: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
2023-04-10 03:23:57 +08:00
follows the `selection → action` model. This means that 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
2021-08-18 08:53:50 +08:00
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 ).
2021-09-07 12:00:52 +08:00
2022-06-02 01:01:37 +08:00
> TODO: Mention textobjects, surround, registers