home: vim: add 'autoload'

This commit is contained in:
Bruno BELANYI 2021-02-23 15:08:33 +00:00
parent 300e16dace
commit d74aead9ae
3 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,6 @@
" Create the `b:undo_ftplugin` variable if it doesn't exist
function! ftplugined#check_undo_ft()
if !exists("b:undo_ftplugin")
let b:undo_ftplugin=''
endif
endfunction