docs(cmd/s): add examples to np s error output

Amolith and Crush created

Co-authored-by: Crush <crush@charm.land>

Change summary

cmd/s.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

cmd/s.go 🔗

@@ -48,7 +48,7 @@ func runStartSession(cmd *cobra.Command, args []string) error {
 func printExistingSession(cmd *cobra.Command, existing session.Document) error {
 	out := cmd.OutOrStdout()
 	_, _ = fmt.Fprintf(out, "Session %s is already active for %s.\n", existing.SID, existing.DirPath)
-	_, _ = fmt.Fprintln(out, "There's already an active session for this directory; ask your operator whether they want to resume or archive it.")
+	_, _ = fmt.Fprintln(out, "Ask your operator whether they want to resume (`np r`) or archive (`np a`) it.")
 	return nil
 }