From edb5465abf286dd9bc4533f4cf95e34765ee0bca Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Mon, 16 Feb 2026 22:09:22 +0000 Subject: feat: add 'To view' hint to ngit list output Shows 'To view: ngit list ' when listing proposals without an id, helping users discover they can view individual proposals in detail. --- src/bin/ngit/sub_commands/list.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/ngit/sub_commands/list.rs b/src/bin/ngit/sub_commands/list.rs index d2e338d..0750ce0 100644 --- a/src/bin/ngit/sub_commands/list.rs +++ b/src/bin/ngit/sub_commands/list.rs @@ -242,6 +242,7 @@ fn output_table(proposals: &[(&nostr::Event, Kind)], _repo_ref: &RepoRef) { } println!(); + println!("To view: ngit list "); println!("To checkout: ngit checkout "); println!("To apply: ngit apply "); } -- cgit v1.2.3