Define UltiSnips#FileTypeChanged always

This is called via ftdetect/UltiSnips.vim, and needs to be defined
also if UltiSnips fails to initialize, e.g. because of missing Python
support.
This commit is contained in:
Holger Rapp 2015-08-12 06:59:04 +02:00
commit cf2c473a8e

View File

@ -1,5 +1,12 @@
if exists("b:did_autoload_ultisnips") || !exists("g:_uspy")
finish
" Define no-op function, called via ftdetect/UltiSnips.vim.
" TODO(sirver): Add a test for that using a bad g:UltiSnipsPythonVersion
" setting. Without this fix moving the cursor will spam errors, with this
" it should not.
function! UltiSnips#FileTypeChanged()
endfunction
finish
endif
let b:did_autoload_ultisnips = 1