mirror of
https://github.com/Hizenberg469/Vim-tutorials.git
synced 2026-04-19 22:02:24 +03:00
Inserting in Vim
This commit is contained in:
43
vim-commands
43
vim-commands
@@ -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.
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user