Vim: Difference between revisions

From DWIKI
mNo edit summary
Line 9: Line 9:


*http://vim.wikia.com/wiki/Main_Page
*http://vim.wikia.com/wiki/Main_Page
=Plugins=
*[http://www.vim.org/scripts/script.php?script_id=2981 Emmet html plugin]


= FAQ =
= 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.


==Indentation==
==Indentation==

Revision as of 14:41, 21 February 2016

links

Documentation

Editing xml files

Create tag pairs


Plugins


FAQ

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


Indentation

:set filetype=xml

Enable/Disable line numbering

 set nu!

Importing the output of ls -l into the current buffer

 r !ls -l

syntax highlighting on dark background

:set background=dark

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