- cmake
- flake8
alt + <arrow-key>
to move to different buffers.
Run
ctrl + alt + d
to toggle highlight mode
When cursor on word, press*
to highlight it.
Press*
again to go to next and#
to go to previous
$
to go to the end of a line.
E
to skip words forwards.
B
to skip words backwards.
CTRL + T
will toggle the filetree.
enter
will open a file and replace the current buffer.
s
will open a file in a new buffer / split.
To make JSON pretty, open the file and run:
:Jsonfix
To make things pretty run:
gg=G
Add quotes to a word:
yss"
=> "Hello world"
Changing type of quotes:cs"'
=> 'Hello world'
Deleting quotes:ds"
=> Hello world