How to diff remote files interactively with vim and ssh

Author: , November 7th, 2009

vimdiff /path/to/file scp://remotehost//path/to/file

How To Get VIM to Create HTML from PERL

Author: , October 14th, 2009

:let html_use_css = 1 :let html_no_pre = 1 :let html_use_encoding = “utf-8” Use the “:TOhtml” user command. It is defined in a standard plugin. “:TOhtml” also works with a range and in a Visual area: > :10,40TOhtml After you save the resulting file, you can view it with any HTML viewer, such as Netscape. The […]

How to Convert DOS Line Breaks to UNIX in VIM

Author: , September 29th, 2009

How to Ignore Case During Searches in VIM

Author: , September 29th, 2009

To ignore case in the searches, enter the following command: :set ignorecase This command can be abbreviated as: :set ic To turn off this feature, use: :set noignorecase This command can be abbreviated as: :set noic

VIM: How To Turn off Bracket Highlighting

Author: , September 27th, 2009

To turn off Bracket Highlighting: Put let g:loaded_matchparen= 1 in your .vimrc.