Skip to content

Commit f3941c5

Browse files
authoredFeb 11, 2024
fix: make buffer command compatible with Windows paths (#1350) (#1351)
1 parent cfe1920 commit f3941c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎lua/neo-tree/setup/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ M.win_enter_event = function()
307307
log.warn(message)
308308
vim.cmd("rightbelow vertical split")
309309
vim.api.nvim_win_set_width(win_id, state.window.width or 40)
310-
vim.cmd("b" .. buf_name)
310+
vim.cmd("b " .. buf_name)
311311
end)
312312
return
313313
end

0 commit comments

Comments
 (0)
Please sign in to comment.