9 lines
250 B
VimL
9 lines
250 B
VimL
" This has to be called before ftplugins are loaded. Therefore
|
|
" it is here in ftdetect though it maybe shouldn't
|
|
if has("autocmd")
|
|
augroup UltiSnipsFileType
|
|
au!
|
|
autocmd FileType * call UltiSnips#FileTypeChanged()
|
|
augroup END
|
|
endif
|