We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d7a63c commit ea1079dCopy full SHA for ea1079d
lua/noice/util/init.lua
@@ -1,6 +1,7 @@
1
local require = require("noice.util.lazy")
2
3
local Hacks = require("noice.util.hacks")
4
+local Config = require("noice.config")
5
6
local M = {}
7
@@ -49,7 +50,7 @@ function M.tag(buf, tag)
49
50
vim.api.nvim_buf_set_option(buf, "filetype", "noice")
51
end
52
- if vim.api.nvim_buf_get_name(buf) == "" then
53
+ if Config.options.debug and vim.api.nvim_buf_get_name(buf) == "" then
54
local path = "noice://" .. buf .. "/" .. tag
55
local params = {}
56
if ft ~= "" and ft ~= "noice" then
0 commit comments