From 3d46b9546e1ccf131ce4dbcbfc12f6e37fa301ea Mon Sep 17 00:00:00 2001 From: ewy Date: Mon, 1 Jun 2026 19:37:34 +0200 Subject: default to manpage view for help --- completion/completion.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'completion/completion.go') diff --git a/completion/completion.go b/completion/completion.go index 0fbe877..6fc719f 100644 --- a/completion/completion.go +++ b/completion/completion.go @@ -54,7 +54,7 @@ func Add(shell string) *spool.ExitCode { return &spool.CompletionFailure } successMessage(shell, f) - return nil + return &spool.Success } func successMessage(shell string, file string) { @@ -65,5 +65,5 @@ func successMessage(shell string, file string) { // because it is baked in with the program it should always be version-appropriate func Echo() *spool.ExitCode { _, _ = spool.Print("%s", completionCode) - return nil + return &spool.Success } -- cgit v1.3.1