From a10d20b6ce8e462aa1b5c5ffb3ce17111e4faf64 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 3 Aug 2024 13:29:52 +0300 Subject: initial logging to a file support for the client: --- internal/client/tui/compose.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/client/tui/compose.go') diff --git a/internal/client/tui/compose.go b/internal/client/tui/compose.go index 4672462..d918677 100644 --- a/internal/client/tui/compose.go +++ b/internal/client/tui/compose.go @@ -31,8 +31,8 @@ func composeAction(conf config.ClientConfig, queue bool) tea.Cmd { func openEditor(editor, filePath string, cb func() error) tea.Cmd { return tea.ExecProcess(exec.Command(editor, filePath), func(err error) tea.Msg { return finishedMsg{ - cb: cb, - err: err, + cb: cb, + err: err, } }) } -- cgit v1.2.3