Inserting in Vim

This commit is contained in:
2025-08-04 19:54:58 +03:00
parent cbfd763dfa
commit 6faad13610
4 changed files with 57 additions and 6 deletions

View File

@@ -186,6 +186,43 @@ Line mode:
> use :reg to see the content of each register.
> use :reg <arg>
wherer arg -> register name to show the content
arg can be string containing all the
registers named concatenated into a
single string.
+ arg can be string containing all the
registers named concatenated into a
single string.
-> Transforming and Substituting:
* Inserting:
@ Command :- Shift + i or CAPS + i (Capital i)
What does it do?
It put the mode in insert mode and put the cursor in
the first character of the first word of the current
line where the cursor is present.
@ Command :- Shift + a or CAPS + a (Capital a)
What does it do?
It put the mode in insert mode and put the cursor after
the last character of the last word of the current
line where the cursor is present.
@ Command :- o
What does it do?
It puts the mode in insert mode and put the cursor below
the line where the current cursor is present.
@ Command :- Shift + o
What does it do?
It puts the mode in insert mode and put the cursor above
the line where the current cursor is present.