We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cf8942 commit bc98ca6Copy full SHA for bc98ca6
lua/popup/init.lua
@@ -38,6 +38,8 @@ function popup.create(what, vim_options)
38
bufnr = vim.api.nvim_create_buf(false, true)
39
assert(bufnr, "Failed to create buffer")
40
41
+ vim.api.nvim_buf_set_option(bufnr, "bufhidden", "wipe")
42
+
43
-- TODO: Handle list of lines
44
if type(what) == 'string' then
45
what = {what}
0 commit comments