diff options
author | Conor Flynn <conor-f@users.noreply.github.com> | 2024-05-13 10:08:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 02:08:49 -0600 |
commit | 05399fe6cc0c5bd0e882941bcf9fadfae752e14a (patch) | |
tree | 7a5b450672a7ccf4196204e748105150aef2f67e | |
parent | 0659b70da6289d190d46c7937768015bfca88b62 (diff) |
[vim/en] Replace Command Mode with Normal Mode (#4563)
-rw-r--r-- | vim.html.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vim.html.markdown b/vim.html.markdown index b3509934..d120b944 100644 --- a/vim.html.markdown +++ b/vim.html.markdown @@ -98,17 +98,17 @@ that aims to make getting started with vim more approachable! Vim is based on the concept on **modes**. -- Command Mode - vim starts up in this mode, used to navigate and write commands -- Insert Mode - used to make changes in your file -- Visual Mode - used to highlight text and do operations to them -- Ex Mode - used to drop down to the bottom with the ':' prompt to enter commands +- Normal Mode - vim starts up in this mode, used to navigate and write commands +- Insert Mode - used to make changes in your file +- Visual Mode - used to highlight text and do operations to them +- Ex Mode - used to drop down to the bottom with the ':' prompt to enter commands ``` i # Puts vim into insert mode, before the cursor position a # Puts vim into insert mode, after the cursor position v # Puts vim into visual mode : # Puts vim into ex mode - <esc> # 'Escapes' from whichever mode you're in, into Command mode + <esc> # 'Escapes' from whichever mode you're in, into Normal mode # Copying and pasting text # Operations use the vim register by default |