Vim: Difference between revisions

From DWIKI
mNo edit summary
mNo edit summary
Line 3: Line 3:
* [http://vimdoc.sourceforge.net/ http://vimdoc.sourceforge.net/] - the online source for Vim documentation
* [http://vimdoc.sourceforge.net/ http://vimdoc.sourceforge.net/] - the online source for Vim documentation


== tips and tricks==
== FAQ ==
Commands are entered by hitting the Esc button then ":" and the setting, function, command etc.
Commands are entered by hitting the Esc button then ":" and the setting, function, command etc.


Line 23: Line 23:
===End highlighting search results
===End highlighting search results
  <f9> <esc>:nohlsearch<cr>
  <f9> <esc>:nohlsearch<cr>
===show tabs===
:set list

Revision as of 14:01, 30 May 2008

links

FAQ

Commands are entered by hitting the Esc button then ":" and the setting, function, command etc.

Enable/Disable line numbering

 set nu!

Importing the output of ls -l into the current buffer

 r !ls -l

Sort lines 50 to 76 ussing the unix sort command

 50,76 !sort

Change syntax colours

find syncolor.vim

===End highlighting search results

<f9> <esc>:nohlsearch<cr>

show tabs

:set list