From 44c011c5988077b515204159b6930c69c0475571 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Tue, 25 Jun 2024 01:10:02 +0200 Subject: checkpoint --- config/essentials/vis/visrc.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'config/essentials/vis/visrc.lua') diff --git a/config/essentials/vis/visrc.lua b/config/essentials/vis/visrc.lua index 78f7cfe..f9242c8 100644 --- a/config/essentials/vis/visrc.lua +++ b/config/essentials/vis/visrc.lua @@ -119,10 +119,12 @@ end) vis.events.subscribe(vis.events.WIN_OPEN, function(win) -- luacheck: no unused args -- automatically cd in parent dir of file - if win.file and win.file.path then - local dir = win.file.path:match(".*/") - vis:command("cd " .. dir) - end + vis:command_register("cdp", function() + if win.file and win.file.path then + local dir = win.file.path:match(".*/") + vis:command("cd " .. dir) + end + end, "Cd to parent dir of file") win.options.relativenumbers = true -- cgit v1.2.3