Miscellaneous¶
Open web link in browser¶
Reverse lines in a range¶
Send escape in a command¶
<C-v><Esc>
will print ^[
which will send escape in the command.
Join lines¶
Visually select the lines. :'<,'>j
Or, [range]j[lines]
. eg. 5j20
would go to line 5, and join the next 20
lines.