81 lines
2.0 KiB
VimL
81 lines
2.0 KiB
VimL
" ___vital___
|
|
" NOTE: lines between '" ___vital___' is generated by :Vitalize.
|
|
" Do not mofidify the code nor insert new lines before '" ___vital___'
|
|
if v:version > 703 || v:version == 703 && has('patch1170')
|
|
function! vital#_easymotion#Vim#Message#import() abort
|
|
return map({'capture': '', 'echomsg': '', 'echo': '', 'warn': '', 'get_hit_enter_max_length': '', 'error': ''}, 'function("s:" . v:key)')
|
|
endfunction
|
|
else
|
|
function! s:_SID() abort
|
|
return matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze__SID$')
|
|
endfunction
|
|
execute join(['function! vital#_easymotion#Vim#Message#import() abort', printf("return map({'capture': '', 'echomsg': '', 'echo': '', 'warn': '', 'get_hit_enter_max_length': '', 'error': ''}, \"function('<SNR>%s_' . v:key)\")", s:_SID()), 'endfunction'], "\n")
|
|
delfunction s:_SID
|
|
endif
|
|
" ___vital___
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
|
|
|
|
function! s:echo(hl, msg) abort
|
|
execute 'echohl' a:hl
|
|
try
|
|
echo a:msg
|
|
finally
|
|
echohl None
|
|
endtry
|
|
endfunction
|
|
|
|
function! s:echomsg(hl, msg) abort
|
|
execute 'echohl' a:hl
|
|
try
|
|
for m in split(a:msg, "\n")
|
|
echomsg m
|
|
endfor
|
|
finally
|
|
echohl None
|
|
endtry
|
|
endfunction
|
|
|
|
function! s:error(msg) abort
|
|
call s:echomsg('ErrorMsg', a:msg)
|
|
endfunction
|
|
|
|
function! s:warn(msg) abort
|
|
call s:echomsg('WarningMsg', a:msg)
|
|
endfunction
|
|
|
|
function! s:capture(command) abort
|
|
try
|
|
redir => out
|
|
silent execute a:command
|
|
finally
|
|
redir END
|
|
endtry
|
|
return out
|
|
endfunction
|
|
|
|
" * Get max length of |hit-enter|.
|
|
" If a string length of a message is greater than the max length,
|
|
" Vim waits for user input according to |hit-enter|.
|
|
" XXX: Those fixed values may be different between different OSes?
|
|
" Currently tested on only Windows.
|
|
function! s:get_hit_enter_max_length() abort
|
|
let maxlen = &columns * &cmdheight - 1
|
|
if &ruler
|
|
" TODO
|
|
endif
|
|
if &showcmd
|
|
let maxlen -= 11
|
|
endif
|
|
return maxlen
|
|
endfunction
|
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|
|
|
|
" vim:set et ts=2 sts=2 sw=2 tw=0:
|