Ben Walton
2009-May-01 16:54 UTC
[sup-talk] [PATCH] Keymap: make new + (apply to tagged) behaviour nicer
Ok, so I updated to the next branch to work on updating/polishing the flexible sent source patch and the new + key for apply to tagged behaviour is driving me nuts. I had a lot of muscle memory built up around the semi-colon, so it''s a tough adjustment for me. I''m willing to make it, of course, since I think the overall reasoning is sound. That being said, mapping = to do the same thing as + will save having to hold shift to access this. I hope this is ok. Patch to follow. Thanks -Ben
Ben Walton
2009-May-01 16:54 UTC
[sup-talk] [PATCH] Keymap: make new + (apply to tagged) behaviour nicer
Make = a synonym for + in the thread index mode so that shift isn''t
required to apply an action to all tagged messages.
---
lib/sup/modes/thread-index-mode.rb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/sup/modes/thread-index-mode.rb
b/lib/sup/modes/thread-index-mode.rb
index 7b87bf6..b44dc18 100644
--- a/lib/sup/modes/thread-index-mode.rb
+++ b/lib/sup/modes/thread-index-mode.rb
@@ -42,7 +42,7 @@ EOS
k.add :toggle_tagged, "Tag/untag selected thread",
''t''
k.add :toggle_tagged_all, "Tag/untag all threads",
''T''
k.add :tag_matching, "Tag matching threads",
''g''
- k.add :apply_to_tagged, "Apply next command to all tagged
threads", ''+''
+ k.add :apply_to_tagged, "Apply next command to all tagged
threads", ''+'', ''=''
k.add :join_threads, "Force tagged threads to be joined into the same
thread", ''#''
k.add :undo, "Undo the previous action", ''u''
end
--
1.6.2.1
William Morgan
2009-May-04 14:24 UTC
[sup-talk] [PATCH] Keymap: make new + (apply to tagged) behaviour nicer
Reformatted excerpts from Ben Walton''s message of 2009-05-01:> Make = a synonym for + in the thread index mode so that shift isn''t > required to apply an action to all tagged messages.Good idea. Can you make this change against the better-buffer-list branch instead of next? It''s not applying as is. -- William <wmorgan-sup at masanjin.net>