134 lines
3.7 KiB
VimL
134 lines
3.7 KiB
VimL
|
let s:is_vim = !has('nvim')
|
||
|
|
||
|
" first window id for bufnr
|
||
|
" builtin bufwinid returns window of current tab only
|
||
|
function! coc#compat#buf_win_id(bufnr) abort
|
||
|
let info = filter(getwininfo(), 'v:val["bufnr"] =='.a:bufnr)
|
||
|
if empty(info)
|
||
|
return -1
|
||
|
endif
|
||
|
return info[0]['winid']
|
||
|
endfunction
|
||
|
|
||
|
function! coc#compat#win_is_valid(winid) abort
|
||
|
if exists('*nvim_win_is_valid')
|
||
|
return nvim_win_is_valid(a:winid)
|
||
|
endif
|
||
|
return !empty(getwininfo(a:winid))
|
||
|
endfunction
|
||
|
|
||
|
" clear matches by window id, not throw on none exists window.
|
||
|
" may not work on vim < 8.1.1084 & neovim < 0.4.0
|
||
|
function! coc#compat#clear_matches(winid) abort
|
||
|
if !coc#compat#win_is_valid(a:winid)
|
||
|
return
|
||
|
endif
|
||
|
let curr = win_getid()
|
||
|
if curr == a:winid
|
||
|
call clearmatches()
|
||
|
return
|
||
|
endif
|
||
|
if s:is_vim
|
||
|
if has('patch-8.1.1084')
|
||
|
call clearmatches(a:winid)
|
||
|
endif
|
||
|
else
|
||
|
if exists('*nvim_set_current_win')
|
||
|
noa call nvim_set_current_win(a:winid)
|
||
|
call clearmatches()
|
||
|
noa call nvim_set_current_win(curr)
|
||
|
endif
|
||
|
endif
|
||
|
endfunction
|
||
|
|
||
|
function! coc#compat#matchaddpos(group, pos, priority, winid) abort
|
||
|
let curr = win_getid()
|
||
|
if curr == a:winid
|
||
|
call matchaddpos(a:group, a:pos, a:priority, -1)
|
||
|
else
|
||
|
if s:is_vim
|
||
|
if has('patch-8.1.0218')
|
||
|
call matchaddpos(a:group, a:pos, a:priority, -1, {'window': a:winid})
|
||
|
endif
|
||
|
else
|
||
|
if has('nvim-0.4.0')
|
||
|
call matchaddpos(a:group, a:pos, a:priority, -1, {'window': a:winid})
|
||
|
elseif exists('*nvim_set_current_win')
|
||
|
noa call nvim_set_current_win(a:winid)
|
||
|
call matchaddpos(a:group, a:pos, a:priority, -1)
|
||
|
noa call nvim_set_current_win(curr)
|
||
|
endif
|
||
|
endif
|
||
|
endif
|
||
|
endfunction
|
||
|
|
||
|
" hlGroup, pos, priority
|
||
|
function! coc#compat#matchaddgroups(winid, groups) abort
|
||
|
" add by winid
|
||
|
if s:is_vim && has('patch-8.1.0218') || has('nvim-0.4.0')
|
||
|
for group in a:groups
|
||
|
call matchaddpos(group['hlGroup'], [group['pos']], group['priority'], -1, {'window': a:winid})
|
||
|
endfor
|
||
|
endif
|
||
|
let curr = win_getid()
|
||
|
if curr == a:winid
|
||
|
for group in a:groups
|
||
|
call matchaddpos(group['hlGroup'], [group['pos']], group['priority'], -1)
|
||
|
endfor
|
||
|
elseif exists('*nvim_set_current_win')
|
||
|
noa call nvim_set_current_win(a:winid)
|
||
|
for group in a:groups
|
||
|
call matchaddpos(group['hlGroup'], [group['pos']], group['priority'], -1)
|
||
|
endfor
|
||
|
noa call nvim_set_current_win(curr)
|
||
|
endif
|
||
|
endfunction
|
||
|
|
||
|
" remove keymap for specfic buffer
|
||
|
function! coc#compat#buf_del_keymap(bufnr, mode, lhs) abort
|
||
|
if !bufloaded(a:bufnr)
|
||
|
return
|
||
|
endif
|
||
|
if exists('*nvim_buf_del_keymap')
|
||
|
try
|
||
|
call nvim_buf_del_keymap(a:bufnr, a:mode, a:lhs)
|
||
|
catch /^Vim\%((\a\+)\)\=:E5555/
|
||
|
" ignore keymap not exists.
|
||
|
endtry
|
||
|
return
|
||
|
endif
|
||
|
if bufnr == a:bufnr
|
||
|
execute 'silent! '.a:mode.'unmap <buffer> '.a:lhs
|
||
|
return
|
||
|
endif
|
||
|
if exists('*win_execute')
|
||
|
let winid = coc#compat#buf_win_id(a:bufnr)
|
||
|
if winid != -1
|
||
|
call win_execute(winid, 'silent! '.a:mode.'unmap <buffer> '.a:lhs)
|
||
|
endif
|
||
|
endif
|
||
|
endfunction
|
||
|
|
||
|
" execute command or list of commands in window
|
||
|
function! coc#compat#execute(winid, command) abort
|
||
|
if s:is_vim
|
||
|
if !exists('*win_execute')
|
||
|
throw 'win_execute function not exists, please upgrade your vim.'
|
||
|
endif
|
||
|
if type(a:command) == v:t_string
|
||
|
keepalt call win_execute(a:winid, a:command)
|
||
|
elseif type(a:command) == v:t_list
|
||
|
keepalt call win_execute(a:winid, join(a:command, "\n"))
|
||
|
endif
|
||
|
else
|
||
|
let curr = nvim_get_current_win()
|
||
|
noa keepalt call nvim_set_current_win(a:winid)
|
||
|
if type(a:command) == v:t_string
|
||
|
exec a:command
|
||
|
elseif type(a:command) == v:t_list
|
||
|
exec join(a:command, "\n")
|
||
|
endif
|
||
|
noa keepalt call nvim_set_current_win(curr)
|
||
|
endif
|
||
|
endfunc
|