mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 02:20:04 +08:00
cd6ea298f2
* Add incsearch.vim into bundle dir * Fix java neoformat config close #3573 * Use echom instead in pull.vim
48 lines
1.2 KiB
VimL
48 lines
1.2 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#Gift#Tabpage#import() abort', printf("return map({'uniq_nr': '', 'make_uniq_nr': '', 'numbering': '', 'set_prefix': ''}, \"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
|
|
|
|
|
|
let s:prefix = expand("<sfile>:p:h:h:t")
|
|
function! s:set_prefix(prefix)
|
|
let s:prefix = a:prefix
|
|
endfunction
|
|
|
|
|
|
let s:uniq_counter = 0
|
|
function! s:make_uniq_nr()
|
|
let s:uniq_counter += 1
|
|
return s:uniq_counter
|
|
endfunction
|
|
|
|
|
|
function! s:numbering(...)
|
|
let tabnr = get(a:, 1, tabpagenr())
|
|
let uniq_nr = s:make_uniq_nr()
|
|
call settabvar(tabnr, s:prefix . "_gift_uniq_tabpagenr", uniq_nr)
|
|
return uniq_nr
|
|
endfunction
|
|
|
|
|
|
function! s:uniq_nr(...)
|
|
let tabnr = get(a:, 1, tabpagenr())
|
|
let uniq_nr = get(gettabvar(tabnr, ""), s:prefix . "_gift_uniq_tabpagenr", -1)
|
|
if uniq_nr == -1
|
|
let uniq_nr = s:numbering(tabnr)
|
|
endif
|
|
return uniq_nr
|
|
endfunction
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
unlet s:save_cpo
|