mirror of
https://github.com/prabirshrestha/vim-lsp.git
synced 2025-12-14 20:35:59 +01:00
* Allow setting max width of popup window in Vim * Allow setting max width of popup window in Neovim * Add documentation * Uses spaces instead of tabs for indent in help * Move Neovim logic to s:setcontent * Rename setting to g:lsp_preview_max_width * Replace 'popup' with 'preview'
261 lines
8.0 KiB
VimL
261 lines
8.0 KiB
VimL
let s:supports_floating = exists('*nvim_open_win') || has('patch-8.1.1517')
|
|
let s:winid = v:false
|
|
let s:prevwin = v:false
|
|
let s:preview_data = v:false
|
|
|
|
function! lsp#ui#vim#output#closepreview() abort
|
|
if win_getid() == s:winid
|
|
" Don't close if window got focus
|
|
return
|
|
endif
|
|
"closing floats in vim8.1 must use popup_close() (nvim could use nvim_win_close but pclose
|
|
"works)
|
|
if s:supports_floating && s:winid && g:lsp_preview_float && !has('nvim')
|
|
call popup_close(s:winid)
|
|
else
|
|
pclose
|
|
endif
|
|
let s:winid = v:false
|
|
let s:preview_data = v:false
|
|
augroup lsp_float_preview_close
|
|
augroup end
|
|
autocmd! lsp_float_preview_close CursorMoved,CursorMovedI,VimResized *
|
|
doautocmd User lsp_float_closed
|
|
endfunction
|
|
|
|
function! lsp#ui#vim#output#focuspreview() abort
|
|
" This does not work for vim8.1 popup but will work for nvim and old preview
|
|
if s:winid
|
|
if win_getid() != s:winid
|
|
let s:prevwin = win_getid()
|
|
call win_gotoid(s:winid)
|
|
elseif s:prevwin
|
|
" Temporarily disable hooks
|
|
" TODO: remove this when closing logic is able to distinguish different move directions
|
|
autocmd! lsp_float_preview_close CursorMoved,CursorMovedI,VimResized *
|
|
call win_gotoid(s:prevwin)
|
|
call s:add_float_closing_hooks()
|
|
let s:prevwin = v:false
|
|
endif
|
|
endif
|
|
endfunction
|
|
|
|
function! s:bufwidth() abort
|
|
let width = winwidth(0)
|
|
let numberwidth = max([&numberwidth, strlen(line('$'))+1])
|
|
let numwidth = (&number || &relativenumber)? numberwidth : 0
|
|
let foldwidth = &foldcolumn
|
|
|
|
if &signcolumn ==? 'yes'
|
|
let signwidth = 2
|
|
elseif &signcolumn ==? 'auto'
|
|
let signs = execute(printf('sign place buffer=%d', bufnr('')))
|
|
let signs = split(signs, "\n")
|
|
let signwidth = len(signs)>2? 2: 0
|
|
else
|
|
let signwidth = 0
|
|
endif
|
|
return width - numwidth - foldwidth - signwidth
|
|
endfunction
|
|
|
|
|
|
function! s:get_float_positioning(height, width) abort
|
|
let l:height = a:height
|
|
let l:width = a:width
|
|
" For a start show it below/above the cursor
|
|
" TODO: add option to configure it 'docked' at the bottom/top/right
|
|
let l:y = winline()
|
|
if l:y + l:height >= winheight(0)
|
|
" Float does not fit
|
|
if l:y - 2 > l:height
|
|
" Fits above
|
|
let l:y = winline() - l:height -1
|
|
elseif l:y - 2 > winheight(0) - l:y
|
|
" Take space above cursor
|
|
let l:y = 1
|
|
let l:height = winline()-2
|
|
else
|
|
" Take space below cursor
|
|
let l:height = winheight(0) -l:y
|
|
endif
|
|
endif
|
|
let l:col = col('.')
|
|
" Positioning is not window but screen relative
|
|
let l:opts = {
|
|
\ 'relative': 'win',
|
|
\ 'row': l:y,
|
|
\ 'col': l:col,
|
|
\ 'width': l:width,
|
|
\ 'height': l:height,
|
|
\ }
|
|
return l:opts
|
|
endfunction
|
|
|
|
function! lsp#ui#vim#output#floatingpreview(data) abort
|
|
if has('nvim')
|
|
let l:buf = nvim_create_buf(v:false, v:true)
|
|
call setbufvar(l:buf, '&signcolumn', 'no')
|
|
|
|
" Try to get as much pace right-bolow the cursor, but at least 10x10
|
|
let l:width = max([s:bufwidth(), 10])
|
|
let l:height = max([&lines - winline() + 1, 10])
|
|
|
|
let l:opts = s:get_float_positioning(l:height, l:width)
|
|
|
|
let s:winid = nvim_open_win(buf, v:true, l:opts)
|
|
call nvim_win_set_option(s:winid, 'winhl', 'Normal:Pmenu,NormalNC:Pmenu')
|
|
call nvim_win_set_option(s:winid, 'foldenable', v:false)
|
|
call nvim_win_set_option(s:winid, 'wrap', v:true)
|
|
call nvim_win_set_option(s:winid, 'statusline', '')
|
|
call nvim_win_set_option(s:winid, 'number', v:false)
|
|
call nvim_win_set_option(s:winid, 'relativenumber', v:false)
|
|
call nvim_win_set_option(s:winid, 'cursorline', v:false)
|
|
" Enable closing the preview with esc, but map only in the scratch buffer
|
|
nmap <buffer><silent> <esc> :pclose<cr>
|
|
else
|
|
let l:options = {
|
|
\ 'moved': 'any',
|
|
\ 'border': [1, 1, 1, 1],
|
|
\ }
|
|
|
|
if g:lsp_preview_max_width > 0
|
|
let l:options['maxwidth'] = g:lsp_preview_max_width
|
|
endif
|
|
|
|
let s:winid = popup_atcursor('...', l:options)
|
|
endif
|
|
return s:winid
|
|
endfunction
|
|
|
|
function! s:setcontent(lines, ft) abort
|
|
if s:supports_floating && g:lsp_preview_float && !has('nvim')
|
|
" vim popup
|
|
call setbufline(winbufnr(s:winid), 1, a:lines)
|
|
let l:lightline_toggle = v:false
|
|
if exists('#lightline') && !has('nvim')
|
|
" Lightline does not work in popups but does not recognize it yet.
|
|
" It is ugly to have an check for an other plugin here, better fix lightline...
|
|
let l:lightline_toggle = v:true
|
|
call lightline#disable()
|
|
endif
|
|
call win_execute(s:winid, 'setlocal filetype=' . a:ft . '.lsp-hover')
|
|
if l:lightline_toggle
|
|
call lightline#enable()
|
|
endif
|
|
else
|
|
" nvim floating
|
|
call setline(1, a:lines)
|
|
|
|
" Set maximum width of floating window, if specified
|
|
if g:lsp_preview_max_width > 0
|
|
let &l:textwidth = g:lsp_preview_max_width
|
|
normal! gggqGgg
|
|
endif
|
|
|
|
setlocal readonly nomodifiable
|
|
let &l:filetype = a:ft . '.lsp-hover'
|
|
endif
|
|
endfunction
|
|
|
|
function! s:adjust_float_placement(bufferlines, maxwidth) abort
|
|
if has('nvim')
|
|
let l:win_config = {}
|
|
let l:height = min([winheight(s:winid), a:bufferlines])
|
|
let l:width = min([winwidth(s:winid), a:maxwidth])
|
|
let l:win_config = s:get_float_positioning(l:height, l:width)
|
|
call nvim_win_set_config(s:winid, l:win_config )
|
|
endif
|
|
endfunction
|
|
|
|
function! s:add_float_closing_hooks() abort
|
|
if g:lsp_preview_autoclose
|
|
augroup lsp_float_preview_close
|
|
autocmd! lsp_float_preview_close CursorMoved,CursorMovedI,VimResized *
|
|
autocmd CursorMoved,CursorMovedI,VimResized * call lsp#ui#vim#output#closepreview()
|
|
augroup END
|
|
endif
|
|
endfunction
|
|
|
|
function! lsp#ui#vim#output#getpreviewwinid() abort
|
|
return s:winid
|
|
endfunction
|
|
|
|
function! s:open_preview(data) abort
|
|
if s:supports_floating && g:lsp_preview_float
|
|
let l:winid = lsp#ui#vim#output#floatingpreview(a:data)
|
|
else
|
|
execute &previewheight.'new'
|
|
let l:winid = win_getid()
|
|
endif
|
|
return l:winid
|
|
endfunction
|
|
|
|
function! lsp#ui#vim#output#preview(data) abort
|
|
if s:winid && type(s:preview_data) == type(a:data)
|
|
\ && s:preview_data == a:data
|
|
\ && type(g:lsp_preview_doubletap) == 3
|
|
\ && len(g:lsp_preview_doubletap) >= 1
|
|
\ && type(g:lsp_preview_doubletap[0]) == 2
|
|
echo ''
|
|
return call(g:lsp_preview_doubletap[0], [])
|
|
endif
|
|
" Close any previously opened preview window
|
|
pclose
|
|
|
|
let l:current_window_id = win_getid()
|
|
|
|
let s:winid = s:open_preview(a:data)
|
|
|
|
let s:preview_data = a:data
|
|
let l:lines = []
|
|
let l:ft = s:append(a:data, l:lines)
|
|
call s:setcontent(l:lines, l:ft)
|
|
|
|
" Get size information while still having the buffer active
|
|
let l:bufferlines = line('$')
|
|
let l:maxwidth = max(map(getline(1, '$'), 'strdisplaywidth(v:val)'))
|
|
|
|
" restore focus to the previous window
|
|
call win_gotoid(l:current_window_id)
|
|
|
|
echo ''
|
|
|
|
if s:supports_floating && s:winid && g:lsp_preview_float
|
|
if has('nvim')
|
|
call s:adjust_float_placement(l:bufferlines, l:maxwidth)
|
|
call s:add_float_closing_hooks()
|
|
endif
|
|
doautocmd User lsp_float_opened
|
|
endif
|
|
|
|
if !g:lsp_preview_keep_focus
|
|
" set the focus to the preview window
|
|
call win_gotoid(s:winid)
|
|
endif
|
|
return ''
|
|
endfunction
|
|
|
|
function! s:append(data, lines) abort
|
|
if type(a:data) == type([])
|
|
for l:entry in a:data
|
|
call s:append(entry, a:lines)
|
|
endfor
|
|
|
|
return 'markdown'
|
|
elseif type(a:data) == type('')
|
|
call extend(a:lines, split(a:data, "\n"))
|
|
|
|
return 'markdown'
|
|
elseif type(a:data) == type({}) && has_key(a:data, 'language')
|
|
call add(a:lines, '```'.a:data.language)
|
|
call extend(a:lines, split(a:data.value, '\n'))
|
|
call add(a:lines, '```')
|
|
|
|
return 'markdown'
|
|
elseif type(a:data) == type({}) && has_key(a:data, 'kind')
|
|
call extend(a:lines, split(a:data.value, '\n'))
|
|
|
|
return a:data.kind ==? 'plaintext' ? 'text' : a:data.kind
|
|
endif
|
|
endfunction
|