From c487a73fa22f3815dc043e188cc73418115211e1 Mon Sep 17 00:00:00 2001 From: rayx Date: Tue, 20 Jul 2021 02:03:59 +1000 Subject: feat(lsp): allow configuring zindex for floating windows (#15086) --- runtime/lua/vim/lsp/util.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/lua/vim/lsp') diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua index 1ea974dffa..dc15d67e1c 100644 --- a/runtime/lua/vim/lsp/util.lua +++ b/runtime/lua/vim/lsp/util.lua @@ -990,6 +990,7 @@ function M.make_floating_popup_options(width, height, opts) style = 'minimal', width = width, border = opts.border or default_border, + zindex = opts.zindex or 50, } end -- cgit