1
0
Fork 0
mirror of synced 2024-05-27 20:41:12 -04:00
ultimate-vim/sources_non_forked/vim-snipmate/ftplugin/snippet.vim

9 lines
230 B
VimL
Raw Normal View History

2012-08-16 23:41:25 -04:00
command! -buffer -range=% RetabSnip <line1>,<line2>call snipMate#RetabSnip()
vnoremap <buffer> <cr> :RetabSnip<cr>
if !exists('g:snippet_no_indentation_settings')
2012-08-16 23:41:25 -04:00
setlocal sw=4
setlocal tabstop=4
setlocal noexpandtab
endif