Description
Type of Edit (select all that apply)
Clarify unclear content and/or terms
Description (optional)
An edit of the doc page for VIM is required at content/command-line/concepts/vim/vim.md
.
In the doc page for VIM there are listed 3 modes but there are 4 general modes. The missing mode is the normal
mode.
Current statement
...
Vim has three modes of operation:
COMMAND MODE
: Execute commands like undo, redo, find, replace, quit, etc.
INSERT MODE
: Type and edit text.
VISUAL MODE
: Highlight, select and edit text.
...
Correct one
...
Vim has four modes of operation:
NORMAL MODE
: Used for editor commands. This is generally the default mode and by default hitting ESC
returns the editor to this mode.
COMMAND MODE
: Provides a single line input at the bottom of the Vim window. Commands (beginning with :
) and some other keys for specific actions (including pattern search and the filter command) activate this mode. On completion of the command, Vim returns to the previous mode.
INSERT MODE
: Type and edit text.
VISUAL MODE
: Highlight, select and edit text.
...
Additional info
Wikipedia page for vim gives additional information.
Code of Conduct
- By submitting this issue, I agree to follow Codecademy Doc's Code of Conduct.
For Maintainers
- Labels added
- Issue is assigned
Activity