From d7768db6dda6f751c0f76d29cbb0beed3ee72e1f Mon Sep 17 00:00:00 2001 From: Nihilazo Date: Sun, 31 Oct 2021 14:43:16 +0000 Subject: [PATCH] micro things --- micro/.config/micro/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/micro/.config/micro/init.lua b/micro/.config/micro/init.lua index 65e4676..a47879d 100644 --- a/micro/.config/micro/init.lua +++ b/micro/.config/micro/init.lua @@ -43,9 +43,9 @@ function gotofile(bp) if not path.IsAbs(p) then p = path.Join(path.Dir(bp.buf.Path), p) end - -- open in a split + -- open in a tab -- TODO placement that's better than just splitting? - bp.HSplitCmd(bp, {p}) + bp.NewTabCmd(bp, {p}) return false end end