Starting with (n)vim
I have just started using Vim for writing small scripts while doing CTFs so this will have things that I am learning with time.
duplicate a line:
:t.
Copy paste are simple:
Shift+CTRL+C
- copyShift+CTRL+V
- paste
quit
:qa!
visual mode:
v
to get into visual mode - this is just for charactersV
- this is for line modeCtrl+v
- Visual block modeUse arrow keys to select the text.
Shift+$ - to completely select the word.
Y - yank(copy)
d - delete
p - paste
u - undo
:s/,/\r/g
Break on comma
:set number
Show line number
To Select and comment multiple lines
Select the first caracter of your block
press Ctrl+V ( this is rectangular visual selection mode)
type
j
for each line more you want to be commentedtype
Shift-i
(like I for "insert at start")type // (or # or " or ...)
You will see the modification appearing only on the first line
IMPORTANT LAST STEP: type Esc key, and there you see the added character appear on all lines
Last updated