109 lines
3.5 KiB
VimL
109 lines
3.5 KiB
VimL
|
"=============================================================================
|
|||
|
" floating.vim --- neovim#floating api
|
|||
|
" Copyright (c) 2016-2023 Wang Shidong & Contributors
|
|||
|
" Author: Wang Shidong < wsdjeg@outlook.com >
|
|||
|
" URL: https://spacevim.org
|
|||
|
" License: GPLv3
|
|||
|
"=============================================================================
|
|||
|
scriptencoding utf-8
|
|||
|
|
|||
|
let s:self = {}
|
|||
|
let s:self.__dict = SpaceVim#api#import('data#dict')
|
|||
|
|
|||
|
function! s:self.exists() abort
|
|||
|
return exists('*nvim_open_win')
|
|||
|
endfunction
|
|||
|
" in old version nvim_open_win api is:
|
|||
|
" call nvim_open_win(s:bufnr, v:true, &columns, 12,
|
|||
|
" \ {
|
|||
|
" \ 'relative': 'editor',
|
|||
|
" \ 'row': &lines - 14,
|
|||
|
" \ 'col': 0
|
|||
|
" \ })
|
|||
|
" if exists('*nvim_open_win')
|
|||
|
" call nvim_win_set_config(win_getid(s:gwin),
|
|||
|
" \ {
|
|||
|
" \ 'relative': 'editor',
|
|||
|
" \ 'width' : &columns,
|
|||
|
" \ 'height' : layout.win_dim + 2,
|
|||
|
" \ 'row' : &lines - layout.win_dim - 4,
|
|||
|
" \ 'col' : 0
|
|||
|
" \ })
|
|||
|
function! s:self.open_win(buf, focuce, opt) abort
|
|||
|
if has_key(a:opt, 'highlight')
|
|||
|
let hg = a:opt.highlight
|
|||
|
let opt = self.__dict.omit(a:opt, ['highlight'])
|
|||
|
else
|
|||
|
let opt = a:opt
|
|||
|
endif
|
|||
|
try
|
|||
|
let id = nvim_open_win(a:buf, a:focuce, opt)
|
|||
|
catch /^Vim\%((\a\+)\)\=:E119/
|
|||
|
let id = nvim_open_win(a:buf, a:focuce, get(a:opt, 'width', 5), get(a:opt, 'height', 5),
|
|||
|
\ {
|
|||
|
\ 'relative' : get(a:opt, 'relative', 'editor'),
|
|||
|
\ 'row' : get(a:opt, 'row', 5),
|
|||
|
\ 'col' : get(a:opt, 'col', 5),
|
|||
|
\ })
|
|||
|
endtry
|
|||
|
if exists('&winhighlight') && id !=# 0 && has_key(a:opt, 'highlight')
|
|||
|
call setwinvar(id, '&winhighlight', 'Normal:' . a:opt.highlight)
|
|||
|
endif
|
|||
|
return id
|
|||
|
endfunction
|
|||
|
|
|||
|
function! s:self.win_config(winid, opt) abort
|
|||
|
" Neovim 这一函数有三种状态:
|
|||
|
" 1:最初名称为 nvim_win_config,并且接受 4 个参数
|
|||
|
" 2:名称被重命名为 nvim_win_set_config,并且任然接受四个参数
|
|||
|
" 3:最新版本名称为 nvim_win_set_config,只接受 2 个参数
|
|||
|
" 这里实现的逻辑就是优先使用最新的api调用方式,当报错时顺历史变更顺序去尝试。
|
|||
|
if has_key(a:opt, 'highlight')
|
|||
|
let hg = a:opt.highlight
|
|||
|
let opt = self.__dict.omit(a:opt, ['highlight'])
|
|||
|
else
|
|||
|
let opt = a:opt
|
|||
|
endif
|
|||
|
try
|
|||
|
let id = nvim_win_set_config(a:winid, opt)
|
|||
|
catch /^Vim\%((\a\+)\)\=:E119/
|
|||
|
let id = nvim_win_set_config(a:winid, get(a:opt, 'width', 5), get(a:opt, 'height', 5),
|
|||
|
\ {
|
|||
|
\ 'relative' : get(a:opt, 'relative', 'editor'),
|
|||
|
\ 'row' : get(a:opt, 'row', 5),
|
|||
|
\ 'col' : get(a:opt, 'col', 5),
|
|||
|
\ })
|
|||
|
catch /^Vim\%((\a\+)\)\=:E117/
|
|||
|
let id = nvim_win_config(a:winid, get(a:opt, 'width', 5), get(a:opt, 'height', 5),
|
|||
|
\ {
|
|||
|
\ 'relative' : get(a:opt, 'relative', 'editor'),
|
|||
|
\ 'row' : get(a:opt, 'row', 5),
|
|||
|
\ 'col' : get(a:opt, 'col', 5),
|
|||
|
\ })
|
|||
|
endtry
|
|||
|
|
|||
|
if exists('&winhighlight') && id !=# 0 && has_key(a:opt, 'highlight')
|
|||
|
call setwinvar(id, '&winhighlight', 'Normal:' . a:opt.highlight)
|
|||
|
endif
|
|||
|
return id
|
|||
|
endfunction
|
|||
|
|
|||
|
function! s:self.get_width(winid) abort
|
|||
|
return nvim_win_get_width(a:winid)
|
|||
|
endfunction
|
|||
|
|
|||
|
|
|||
|
function! s:self.win_close(id, focuce) abort
|
|||
|
return nvim_win_close(a:id, a:focuce)
|
|||
|
" @fixme nvim_win_close only support one argv in old version
|
|||
|
try
|
|||
|
return nvim_win_close(a:id, a:focuce)
|
|||
|
catch /^Vim\%((\a\+)\)\=:E118/
|
|||
|
return nvim_win_close(a:id)
|
|||
|
endtry
|
|||
|
endfunction
|
|||
|
|
|||
|
function! SpaceVim#api#neovim#floating#get() abort
|
|||
|
return deepcopy(s:self)
|
|||
|
endfunction
|