* [sup-devel] [PATCH] Add global keybinding to clear all hooks
@ 2010-05-14 15:22 Ben Walton
2010-05-14 16:05 ` Rich Lane
0 siblings, 1 reply; 2+ messages in thread
From: Ben Walton @ 2010-05-14 15:22 UTC (permalink / raw)
To: sup-devel
When developing/tweaking hooks, it's inconvenient to use the console
mode to run the clear hooks command. Add a globally available key
binding ('H') to trigger HookManager.clear. As this is now more
exposed in the UI, make HookManager flash a notice to the
BufferManager indicating that it cleared the hooks.
Signed-off-by: Ben Walton <bwalton@artsci.utoronto.ca>
---
bin/sup | 3 +++
lib/sup/hook.rb | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/bin/sup b/bin/sup
index ef4092f..8638c78 100755
--- a/bin/sup
+++ b/bin/sup
@@ -86,6 +86,7 @@ global_keymap = Keymap.new do |k|
k.add :nothing, "Do nothing", :ctrl_g
k.add :recall_draft, "Edit most recent draft message", 'R'
k.add :show_inbox, "Show the Inbox buffer", 'I'
+ k.add :clear_hooks, "Clear all hooks", 'H'
k.add :show_console, "Show the Console buffer", '~'
## Submap for less often used keybindings
@@ -330,6 +331,8 @@ begin
end
when :show_inbox
BufferManager.raise_to_front ibuf
+ when :clear_hooks
+ HookManager.clear
when :show_console
b, new = bm.spawn_unless_exists("Console", :system => true) { ConsoleMode.new }
b.mode.run
diff --git a/lib/sup/hook.rb b/lib/sup/hook.rb
index 08738cd..a2a39a5 100644
--- a/lib/sup/hook.rb
+++ b/lib/sup/hook.rb
@@ -112,7 +112,7 @@ EOS
def enabled? name; !hook_for(name).nil? end
- def clear; @hooks.clear; end
+ def clear; @hooks.clear; BufferManager.flash "Hooks cleared" end
def clear_one k; @hooks.delete k; end
private
--
1.7.0
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [sup-devel] [PATCH] Add global keybinding to clear all hooks
2010-05-14 15:22 [sup-devel] [PATCH] Add global keybinding to clear all hooks Ben Walton
@ 2010-05-14 16:05 ` Rich Lane
0 siblings, 0 replies; 2+ messages in thread
From: Rich Lane @ 2010-05-14 16:05 UTC (permalink / raw)
To: Ben Walton; +Cc: sup-devel
Applied to master.
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-05-14 16:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-14 15:22 [sup-devel] [PATCH] Add global keybinding to clear all hooks Ben Walton
2010-05-14 16:05 ` Rich Lane
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox