1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
Using HelixFor a full interactive introduction to Helix, refer to the
tutor which
can be accessed via the command
ModesHelix is a modal editor, meaning it has different modes for different tasks. The main modes are:
BuffersBuffers are in-memory representations of files. You can have multiple buffers open at once. Use pickers or commands like Selection-first editingInspired by Kakoune, Helix follows the Multiple selectionsAlso inspired by Kakoune, multiple selections are a core mode of interaction in Helix. For example, the standard way of replacing multiple instances of a word is to first select all instances (so there is one selection per instance) and then use the change action ( MotionsMotions are commands that move the cursor or modify selections. They're used for navigation and text manipulation. Examples include |