From 418e56f14ca52d736b71dbd85ca4e6df1a7ad513 Mon Sep 17 00:00:00 2001 From: "K@zuki" Date: Tue, 3 Sep 2024 15:54:33 +0900 Subject: [PATCH] change: set initial value to path relative to current directory --- command/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/init.go b/command/init.go index e2ca66a..5da225b 100644 --- a/command/init.go +++ b/command/init.go @@ -69,7 +69,7 @@ command = "echo 'hello'"`) attach := true err = tmpl.Execute(&buf, &config.Config{ Name: directory, - Root: currentPath, + Root: ".", Attach: &attach, Windows: []config.Window{}, })