Remove augroup block

`augroup END` in filetype detection scripts can enclose 'filetypedetect'
group unexpectedly, makes following ftdetect auto commands be defined in
default autogroup.
This commit is contained in:
Ye Ding 2015-05-27 14:21:53 +09:00
parent 188e00f7b8
commit 00d50c3ae3

View File

@ -7,8 +7,5 @@ if exists("vimpager")
endif
if has("autocmd")
augroup UltiSnipsFileType
au!
autocmd FileType * call UltiSnips#FileTypeChanged()
augroup END
autocmd FileType * call UltiSnips#FileTypeChanged()
endif