neosnippet.vim/ftplugin/neosnippet.vim
Shougo Matsushita 382f68dbd0 Refactored
2017-06-15 09:11:15 +09:00

21 lines
570 B
VimL

"=============================================================================
" FILE: snippets.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu at gmail.com>
" License: MIT license
"=============================================================================
if !exists('b:undo_ftplugin')
let b:undo_ftplugin = ''
else
let b:undo_ftplugin = '|'
endif
setlocal expandtab
let &l:shiftwidth=&tabstop
let &l:softtabstop=&tabstop
let &l:commentstring="#%s"
let b:undo_ftplugin .= '
\ setlocal expandtab< shiftwidth< softtabstop< tabstop< commentstring<
\'