From: William Morgan Date: Fri, 25 Jan 2008 02:55:17 +0000 (-0800) Subject: (A)rchive -> (a)rchive in thread-view-mode, because keys are case-sensitive X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=aa42404f63155b29fb148b10c72e222ad072efe0;p=sup (A)rchive -> (a)rchive in thread-view-mode, because keys are case-sensitive Note, e.g., "u(N)read" versus "do (n)othing" --- diff --git a/lib/sup/modes/thread-view-mode.rb b/lib/sup/modes/thread-view-mode.rb index a7fa964..961fc5d 100644 --- a/lib/sup/modes/thread-view-mode.rb +++ b/lib/sup/modes/thread-view-mode.rb @@ -49,14 +49,14 @@ EOS k.add :unsubscribe_from_list, "Subscribe to/unsubscribe from mailing list", ")" k.add :pipe_message, "Pipe message or attachment to a shell command", '|' - k.add_multi "(A)rchive/(d)elete/mark as (s)pam/mark as u(N)read:", '.' do |kk| + k.add_multi "(a)rchive/(d)elete/mark as (s)pam/mark as u(N)read:", '.' do |kk| kk.add :archive_and_kill, "Archive this thread and kill buffer", 'a' kk.add :delete_and_kill, "Delete this thread and kill buffer", 'd' kk.add :spam_and_kill, "Mark this thread as spam and kill buffer", 's' kk.add :unread_and_kill, "Mark this thread as unread and kill buffer", 'N' end - k.add_multi "(A)rchive/(d)elete/mark as (s)pam/mark as u(N)read/do (n)othing:", ',' do |kk| + k.add_multi "(a)rchive/(d)elete/mark as (s)pam/mark as u(N)read/do (n)othing:", ',' do |kk| kk.add :archive_and_next, "Archive this thread, kill buffer, and view next", 'a' kk.add :delete_and_next, "Delete this thread, kill buffer, and view next", 'd' kk.add :spam_and_next, "Mark this thread as spam, kill buffer, and view next", 's'