1
0
Fork 0

CONTRIB: Add ftplugin for setting Vim to the ELinks coding style

This will replace the .vimrc infrastructure currently used, which is
considered insecure.
This commit is contained in:
Eric Wald 2006-01-28 05:18:01 +01:00 committed by Jonas Fonseca
parent 99067f0497
commit c6ba201e0c
1 changed files with 15 additions and 0 deletions

15
contrib/vim/c_elinks.vim Normal file
View File

@ -0,0 +1,15 @@
" Setting Vim to support the ELinks coding style
"
" To use this file, drop it in ~/.vim/ftplugin and set filetype plugin on.
" Finally, make sure the path to the source directory contains the word
" 'elinks', for example ~/src/elinks/.
"
" For .h files, link it as cpp_elinks.vim or define c_syntax_for_h in ~/.vimrc.
" For .inc files, let g:filetype_inc = 'c' in ~/.vimrc.
if expand('%:p:h') =~ '.*elinks.*'
setlocal shiftwidth=8
setlocal tabstop=8
setlocal softtabstop=0
setlocal noexpandtab
endif