Category Archives: VIM

VIM: How To Show Control Characters

How to show all control characters in VIM: :set list And to disable: :set nolist

Posted in Editors, VIM | Leave a comment

How To Quickly Go Split Screen in VIM

Horizontal split :split Vertical split :vsplit

Posted in VIM | Leave a comment

Disable auto commenting in VIM using the .vimrc file

Combined some tips together to figure this one out. Put this into your .vimrc file: au FileType * setl fo=cql I’m using VIM version 7.1.12

Posted in Linux, VIM | 1 Comment

How to Remove All Blank Lines in VIM

Regular expression to remove empty lines: :%g/^$/d

Posted in Regular Expressions, VIM | Leave a comment