Skip to content

Commit 0935f1e

Browse files
committed
fix: zindex default to 50
1 parent 5090291 commit 0935f1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lua/gp/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ local config = {
339339
style_popup_max_width = 160,
340340

341341
-- in case of visibility colisions with other plugins, you can increase/decrease zindex
342-
zindex = 49,
342+
zindex = 50,
343343

344344
-- command config and templates below are used by commands like GpRewrite, GpEnew, etc.
345345
-- command prompt prefix for asking user for input (supports {{agent}} template variable)

lua/gp/render.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ M.popup = function(buf, title, size_func, opts, style)
9696
opts = opts or {}
9797
style = style or {}
9898
local border = style.border or "single"
99-
local zindex = style.zindex or 49
99+
local zindex = style.zindex or 50
100100

101101
-- create buffer
102102
buf = buf or vim.api.nvim_create_buf(false, not opts.persist)

0 commit comments

Comments
 (0)