From 0642ddda365dad1c1f845f496d22de1539474e2b Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sat, 30 Apr 2022 20:28:47 -0400 Subject: [PATCH] fix: push home dir to recent dirs with correct function --- nature/commands/cd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nature/commands/cd.lua b/nature/commands/cd.lua index 509e774..b4d1041 100644 --- a/nature/commands/cd.lua +++ b/nature/commands/cd.lua @@ -31,5 +31,5 @@ commander.register('cd', function (args) fs.cd(hilbish.home) bait.throw('cd', hilbish.home) - dirs.addRecent(hilbish.home) + dirs.push(hilbish.home) end)