Skip to content

Commit

Permalink
fix: work around bug in Nushell on Windows
Browse files Browse the repository at this point in the history
Fixes #561
  • Loading branch information
mrcjkb authored Nov 9, 2024
1 parent 1c17422 commit e148f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/rustaceanvim/shell.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ end
---@param path string
---@return string
function M.make_cd_command(path)
return ('cd "%s"'):format(path)
return ("cd '%s'"):format(path)
end

---@param command string
Expand Down

0 comments on commit e148f32

Please sign in to comment.