2
2
鏡像自 https://github.com/Hilbis/Hilbish synced 2025-07-09 04:22:03 +00:00

fix: dont trim spaces on cd dir args

This commit is contained in:
sammyette 2021-09-29 22:32:37 -04:00
父節點 afcc6fe63a
當前提交 630c0b0356
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 50EE40A2809851F5

查看文件

@ -16,7 +16,7 @@ commander.register('cd', function (args)
path = path .. tostring(args[i]) .. ' '
end
path = path:gsub('$%$','\0'):gsub('${([%w_]+)}', os.getenv)
:gsub('$([%w_]+)', os.getenv):gsub('%z','$'):gsub("%s+", "")
:gsub('$([%w_]+)', os.getenv):gsub('%z','$')
if path == '-' then
path = oldDir