We often come across a situation where we have a multi-line text somewhere and we want to copy it into our code to initialize an array of array. Most of the time we do this:
- Write the array declaration;
- copy the contents into parentheses (roughly the length of the text below)
- Then add
'
at the beginning of the line,',
at the end of the line, and repeat until the last line (imagine 50 lines of text).
With Vim, you don't have to do this, just press
014gg
and follow the instructions for the selected line.
const myArray = [
Ctrl-v to enter block operation, $ to the end of the line, j to the next line (do it!).
Press j to the next line
There are many lines below, so let's jump a few more lines with 4j
https://www.yahaha.net
https://www.yahaha.net
Look at the line number later and jump! Now press A to insert, then enter <single quote><comma><Esc> to complete the first step.
// Oops... Jump too much, no problem, press k to go back to the previous line
];
Now that you've completed the first step, you still need to make up the previous
'
, press17gg
to go back to that line and do it again, but but this time there are three things to change:
- press
0
when you press$
on the first line, because this time you want to insert at the beginning of the line. > 1. press0
at the end of the line;- when pressing
A
at the end of the line, pressI
instead, because in block operationsA
is inserted after the character, andI
is inserted before the character;- press
<single quote><Esc>
at the end.Finally, to finish up,
22gg$x
deletes,
at the end of the last line, and then17gg7==
indents the code > a bit. indent the code a bit.Done!
Note: Selecting the beginning and end of a line can also be done after
selecting what to work with, i.e. Ctrl-v jjj$A',<Esc>
Next we talk about macros in Vim.