+ matchit syntax für a2l blockdiff.vim: update (+ commands) git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@150 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69
18 lines
280 B
VimL
18 lines
280 B
VimL
" Stefans a2l-file plugin
|
|
|
|
" don't use spaces for tabs
|
|
setlocal expandtab
|
|
setlocal tabstop=4
|
|
setlocal shiftwidth=4
|
|
setlocal formatoptions=croq
|
|
|
|
" commenting
|
|
let b:commentstring = '//'
|
|
|
|
" Grep options
|
|
"let b:GrepFiles = '*.py'
|
|
|
|
" matchit.vim
|
|
let b:match_words = '/begin\>:/end\>'
|
|
|