NEWS for ELinks 0.11.5
[elinks/elinks-j605.git] / contrib / vim / c_elinks.vim
blob51af0172896d697df13bd88e315787487ce5e17f
1 " Setting Vim to support the ELinks coding style
3 " To use this file, drop it in ~/.vim/ftplugin and set filetype plugin on.
4 " Finally, make sure the path to the source directory contains the word
5 " 'elinks', for example ~/src/elinks/.
7 " For .h files, link it as cpp_elinks.vim or define c_syntax_for_h in ~/.vimrc.
8 " For .inc files, let g:filetype_inc = 'c' in ~/.vimrc.
10 if expand('%:p:h') =~ '.*elinks.*'
11   setlocal shiftwidth=8
12   setlocal tabstop=8
13   setlocal softtabstop=0
14   setlocal noexpandtab
15 endif