mcjones.ca

vim Snippets

Moving around

Showing Spaces

:set listchars=eol:$,tab:>-,trail:~,space:␣
:set list

The space:␣ is gold. Thank you loxaxs!

Preventing Indenting when Commenting

You’ll need to add the following to any filetype. (In this case we’re showing # and yaml)

set indentkeys-=0#

autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab indentkeys-=0#

Block Editing

Enter visual mode: Control-V Select lines: eg. 5j for the next 5 lines Enter Insert with Shift-I Type stuff/make changes Hit Escape