Skip to content
Snippets Groups Projects
Unverified Commit 806a47a7 authored by Hiroki Konishi's avatar Hiroki Konishi Committed by GitHub
Browse files

[vim] Remove unnecessary `border` management in nvim floating window (#2370)

parent 29851c18
No related branches found
No related tags found
No related merge requests found
......@@ -915,13 +915,9 @@ if has('nvim')
function s:create_popup(hl, opts) abort
let buf = nvim_create_buf(v:false, v:true)
let opts = extend({'relative': 'editor', 'style': 'minimal'}, a:opts)
let border = has_key(opts, 'border') ? remove(opts, 'border') : []
let win = nvim_open_win(buf, v:true, opts)
call setwinvar(win, '&winhighlight', 'NormalFloat:'..a:hl)
call setwinvar(win, '&colorcolumn', '')
if !empty(border)
call nvim_buf_set_lines(buf, 0, -1, v:true, border)
endif
return buf
endfunction
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment