vim-easymotion/autoload/vital/_easymotion/Over/Commandline/Modules/Redraw.vim
haya14busa bef3e42328 Fix unexpected message echoed
Problem: use `let` to call function instead of `call`...
update vital-over

close #115
2014-02-21 19:55:23 +09:00

43 lines
692 B
VimL

scriptencoding utf-8
let s:save_cpo = &cpo
set cpo&vim
let s:module = {
\ "name" : "Redraw",
\}
function! s:module.on_execute_pre(cmdline)
call self.redraw(a:cmdline)
endfunction
function! s:module.on_enter(...)
let self.is_execute = 0
endfunction
function! s:module.on_execute(...)
let self.is_execute = 1
endfunction
function! s:module.on_execute_failed(...)
let self.is_execute = 0
endfunction
function! s:module.on_leave(cmdline)
if self.is_execute == 0
call self.redraw(a:cmdline)
endif
endfunction
function! s:module.redraw(cmdline)
call a:cmdline.redraw()
endfunction
function! s:make()
return deepcopy(s:module)
endfunction
let &cpo = s:save_cpo
unlet s:save_cpo