commit 6c50fa234d179a5f116c75c8f9fbbb41e08a1195
parent f8197778090e99e93d61548295a8ddf7d24ac967
Author: Rich Lane <rlane@club.cc.cmu.edu>
Date: Sat, 27 Feb 2010 00:34:11 -0800
Merge branch 'master' into next
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/lib/sup/modes/thread-view-mode.rb b/lib/sup/modes/thread-view-mode.rb
@@ -83,6 +83,7 @@ EOS
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'
+ kk.add :do_nothing_and_kill, "Just kill this buffer", '.'
end
k.add_multi "(a)rchive/(d)elete/mark as (s)pam/mark as u(N)read/do (n)othing:", ',' do |kk|
@@ -90,7 +91,7 @@ EOS
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'
kk.add :unread_and_next, "Mark this thread as unread, kill buffer, and view next", 'N'
- kk.add :do_nothing_and_next, "Kill buffer, and view next", 'n'
+ kk.add :do_nothing_and_next, "Kill buffer, and view next", 'n', ','
end
k.add_multi "(a)rchive/(d)elete/mark as (s)pam/mark as u(N)read/do (n)othing:", ']' do |kk|
@@ -98,7 +99,7 @@ EOS
kk.add :delete_and_prev, "Delete this thread, kill buffer, and view previous", 'd'
kk.add :spam_and_prev, "Mark this thread as spam, kill buffer, and view previous", 's'
kk.add :unread_and_prev, "Mark this thread as unread, kill buffer, and view previous", 'N'
- kk.add :do_nothing_and_prev, "Kill buffer, and view previous", 'n'
+ kk.add :do_nothing_and_prev, "Kill buffer, and view previous", 'n', ']'
end
end
@@ -526,6 +527,7 @@ EOS
def spam_and_kill; spam_and_then :kill end
def delete_and_kill; delete_and_then :kill end
def unread_and_kill; unread_and_then :kill end
+ def do_nothing_and_kill; do_nothing_and_then :kill end
def archive_and_next; archive_and_then :next end
def spam_and_next; spam_and_then :next end