fix(change-dir): cd command concatenation
This commit is contained in:
@@ -48,7 +48,7 @@ function M.fn(input_cwd, with_open)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function cd(global, path)
|
local function cd(global, path)
|
||||||
vim.cmd((global and "cd" or "lcd") .. vim.fn.fnameescape(path))
|
vim.cmd((global and "cd " or "lcd ") .. vim.fn.fnameescape(path))
|
||||||
end
|
end
|
||||||
|
|
||||||
local function should_change_dir()
|
local function should_change_dir()
|
||||||
|
|||||||
Reference in New Issue
Block a user