diff options
| author | Paul Buetow <paul@buetow.org> | 2024-08-03 13:29:52 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-08-03 13:29:52 +0300 |
| commit | a10d20b6ce8e462aa1b5c5ffb3ce17111e4faf64 (patch) | |
| tree | 67c400d5bd7773f99bec7ef678f0b74ba31e9822 /internal/client/tui/compose.go | |
| parent | d1a76d38823e2ada4eb30e175a17471550017900 (diff) | |
initial logging to a file support for the client:
Diffstat (limited to 'internal/client/tui/compose.go')
| -rw-r--r-- | internal/client/tui/compose.go | 4 |
1 files changed, 2 insertions, 2 deletions
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, } }) } |
