Exit snippets when entering/exiting command window.

Fixes #510.
This commit is contained in:
Holger Rapp 2015-06-11 07:22:00 +02:00
parent 3806a69874
commit de70b1ed5d

View File

@ -61,8 +61,12 @@ augroup UltiSnips
au!
au CursorMovedI * call UltiSnips#CursorMoved()
au CursorMoved * call UltiSnips#CursorMoved()
au BufLeave * call UltiSnips#LeavingBuffer()
au InsertLeave * call UltiSnips#LeavingInsertMode()
au BufLeave * call UltiSnips#LeavingBuffer()
au CmdwinEnter * call UltiSnips#LeavingBuffer()
au CmdwinLeave * call UltiSnips#LeavingBuffer()
augroup END
call UltiSnips#map_keys#MapKeys()