@@ -10,13 +10,22 @@ Vim_ is a keyboard-centric text editor. "Vim mode" refers to another editor impl
1010ability to perform a subset of vim motions. This will allow you to write, select, edit, copy,
1111paste, navigate, etc, efficiently by using keyboard commands.
1212
13- Vim is modal, three such modes have been implemented in novelWriter:
13+ Vim is modal. Three such modes have been implemented in novelWriter:
1414
1515- **Normal ** mode is the default mode used to navigate text.
1616- **Insert ** mode is where you can write text like in a 'normal' text editor.
1717- **Visual ** mode is for selecting text, with:
18+
1819 - **Visual ** mode for per character selection.
19- - **V-line ** mode for per-line selection.
20+ - **V-Line ** mode for per-line selection.
21+
22+ The vim mode setting is found in the **Features ** section of the **Preferences **.
23+
24+ .. note ::
25+
26+ Vim mode is an advanced feature. When you enable it, the text editor will behave very
27+ differently than a standard text editor. A label in the footer of the editor will show which of
28+ the vim modes it is in.
2029
2130
2231Mode Switching
@@ -34,7 +43,7 @@ To switch between the various vim modes, these keystrokes implemented:
3443You can exit visual mode back to normal mode by pressing :kbd: `Esc `, but all visual mode commands
3544that logically "terminate" the visual mode usage will return you to normal mode.
3645
37- Fro instance, press :kbd: `V ` to enter V-line mode, select next word with :kbd: `w `. press :kbd: `y `
46+ For instance, press :kbd: `V ` to enter V-Line mode, select next word with :kbd: `w `. press :kbd: `y `
3847to yank (copy), you are now automatically put back in normal mode as you have completed selecting
3948your text.
4049
0 commit comments