diff options
| author | Julian Hurst <julian.hurst@digdash.com> | 2024-11-19 17:34:41 +0100 |
|---|---|---|
| committer | Julian Hurst <julian.hurst@digdash.com> | 2024-11-19 17:35:40 +0100 |
| commit | 271e3ed197d5795c4e8f30edd7258fbea9f295bf (patch) | |
| tree | 6e7e12d8c35ddca70a91e50fb04c00fb39c75d2c /cmd.ha | |
| parent | 74210e1f8f16b2ea05c45e1f163f81ff6ab0cf95 (diff) | |
| download | hatask-271e3ed197d5795c4e8f30edd7258fbea9f295bf.tar.gz | |
Don't trim task content
Diffstat (limited to 'cmd.ha')
| -rw-r--r-- | cmd.ha | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -93,7 +93,7 @@ fn show(cfg: config, tasks: []task, a: arguments) (void | task | error) = { // if no args, print all if (len(args) == 0) { for (const t .. tasks) { - fmt::println(t.content)!; + fmt::print(t.content)!; }; return; }; @@ -105,7 +105,7 @@ fn show(cfg: config, tasks: []task, a: arguments) (void | task | error) = { } else { return "No such task"; }; - fmt::println(t.content)!; + fmt::print(t.content)!; }; }; |
