mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 15:50:04 +08:00
cd6ea298f2
* Add incsearch.vim into bundle dir * Fix java neoformat config close #3573 * Use echom instead in pull.vim
63 lines
1.4 KiB
VimL
63 lines
1.4 KiB
VimL
" ___vital___
|
|
" NOTE: lines between '" ___vital___' is generated by :Vitalize.
|
|
" Do not mofidify the code nor insert new lines before '" ___vital___'
|
|
function! s:_SID() abort
|
|
return matchstr(expand('<sfile>'), '<SNR>\zs\d\+\ze__SID$')
|
|
endfunction
|
|
execute join(['function! vital#_incsearch#Coaster#Window#import() abort', printf("return map({'as_windo': '', '_vital_depends': '', 'windo': '', '_vital_loaded': ''}, \"vital#_incsearch#function('<SNR>%s_' . v:key)\")", s:_SID()), 'endfunction'], "\n")
|
|
delfunction s:_SID
|
|
" ___vital___
|
|
scriptencoding utf-8
|
|
let s:save_cpo = &cpo
|
|
set cpo&vim
|
|
|
|
|
|
function! s:_vital_loaded(V)
|
|
let s:V = a:V
|
|
let s:Buffer = a:V.import("Vim.Buffer")
|
|
endfunction
|
|
|
|
|
|
function! s:_vital_depends()
|
|
return [
|
|
\ "Vim.Buffer",
|
|
\ ]
|
|
endfunction
|
|
|
|
|
|
function! s:windo(func, args, ...)
|
|
let dict = get(a:, 1, {})
|
|
if len(tabpagebuflist()) <= 1 || s:Buffer.is_cmdwin()
|
|
return call(a:func, a:args, dict)
|
|
endif
|
|
let pre_winnr = winnr()
|
|
|
|
noautocmd windo call call(a:func, a:args, dict)
|
|
|
|
if pre_winnr == winnr()
|
|
return
|
|
endif
|
|
execute pre_winnr . "wincmd w"
|
|
endfunction
|
|
|
|
|
|
function! s:as_windo(base)
|
|
let windo = {}
|
|
let windo.obj = a:base
|
|
for [key, Value] in items(a:base)
|
|
if type(function("tr")) == type(Value)
|
|
execute
|
|
\ "function! windo.". key. "(...)\n"
|
|
\ " return s:windo(self.obj." . key . ", a:000, self.obj)\n"
|
|
\ "endfunction"
|
|
endif
|
|
unlet Value
|
|
endfor
|
|
return windo
|
|
endfunction
|
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|