Fix the test for doing nothing for CtrlPFunky buffers

This commit is contained in:
w0rp 2017-10-14 17:24:29 +01:00
parent 6fd10f80de
commit 8eb41dc94c
1 changed files with 13 additions and 0 deletions

View File

@ -1,7 +1,20 @@
Before:
Save &l:statusline
let b:funky_command_created = 0
" We will test for the existence of this command, so create one if needed.
if !exists(':CtrlPFunky')
command CtrlPFunky echo
let b:funky_command_created = 1
endif
After:
if b:funky_command_created
delcommand CtrlPFunky
let b:funky_command_created = 0
endif
Restore
Execute(ALE shouldn't do much of anything for ctrlp-funky buffers):