73 lines
1.3 KiB
VimL
73 lines
1.3 KiB
VimL
scriptencoding utf-8
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
|
|
augroup vital-over-commandline-doautocmd-dummy
|
|
autocmd!
|
|
augroup END
|
|
|
|
|
|
let s:cache_command = {}
|
|
function! s:doautocmd_user(command)
|
|
if !has_key(s:cache_command, a:command)
|
|
execute "autocmd vital-over-commandline-doautocmd-dummy"
|
|
\ . " User " . a:command." silent! execute ''"
|
|
|
|
if v:version > 703 || v:version == 703 && has("patch438")
|
|
let s:cache_command[a:command] = "doautocmd <nomodeline> User " . a:command
|
|
else
|
|
let s:cache_command[a:command] = "doautocmd User " . a:command
|
|
endif
|
|
endif
|
|
|
|
execute s:cache_command[a:command]
|
|
endfunction
|
|
|
|
let s:hooks = [
|
|
\ "enter",
|
|
\ "leave",
|
|
\ "char",
|
|
\ "char_pre",
|
|
\ "execute_pre",
|
|
\ "execute_failed",
|
|
\ "execute",
|
|
\ "cancel"
|
|
\]
|
|
|
|
let s:hooks_camel = [
|
|
\ "Enter",
|
|
\ "Leave",
|
|
\ "Char",
|
|
\ "CharPre",
|
|
\ "ExecutePre",
|
|
\ "ExecuteFailed",
|
|
\ "Execute",
|
|
\ "Cancel"
|
|
\]
|
|
|
|
|
|
let s:module = {
|
|
\ "name" : "Doautocmd",
|
|
\}
|
|
|
|
|
|
for s:i in range(len(s:hooks))
|
|
execute join([
|
|
\ "function! s:module.on_" . s:hooks[s:i] . "(...)",
|
|
\ " call s:doautocmd_user(self.prefix . " . string(s:hooks_camel[s:i]) . ")",
|
|
\ "endfunction",
|
|
\ ], "\n")
|
|
endfor
|
|
|
|
|
|
function! s:make(prefix)
|
|
let module = deepcopy(s:module)
|
|
let module.prefix = a:prefix
|
|
return module
|
|
endfunction
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|