From 626105547c8f47dafb2cac1536797436e2234353 Mon Sep 17 00:00:00 2001 From: Brian Ryall Date: Tue, 23 Mar 2021 22:29:28 -0400 Subject: [PATCH] fix the config having both expanded and non expanded --- lua/harpoon/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/harpoon/init.lua b/lua/harpoon/init.lua index 787c8ce..0eb676c 100644 --- a/lua/harpoon/init.lua +++ b/lua/harpoon/init.lua @@ -85,6 +85,7 @@ local function expand_dir(config) for k in pairs(projects) do local expanded_path = Path.new(k):expand() projects[expanded_path] = projects[k] + projects[k] = nil end return config