Skip to content

Commit dbd4d67

Browse files
committed
fix: fix logging, which was broken in the prior commit
1 parent f67c134 commit dbd4d67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/neo-tree/log.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ log.new = function(config, standalone)
128128
return
129129
end
130130
-- Ignnore this if vim is exiting
131-
if vim.v.dying > 0 or vim.v.exiting ~= nil then
131+
if vim.v.dying > 0 or vim.v.exiting ~= vim.NIL then
132132
return
133133
end
134134
local nameupper = level_config.name:upper()

0 commit comments

Comments
 (0)