* [sup-talk] [PATCH] Allow to hit 'y' to send a draft in thread-view-mode
@ 2008-11-16 17:32 Nicolas Pouillard
2008-11-26 23:52 ` William Morgan
0 siblings, 1 reply; 2+ messages in thread
From: Nicolas Pouillard @ 2008-11-16 17:32 UTC (permalink / raw)
---
lib/sup/modes/thread-view-mode.rb | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/lib/sup/modes/thread-view-mode.rb b/lib/sup/modes/thread-view-mode.rb
index 5f578d3..6e9256d 100644
--- a/lib/sup/modes/thread-view-mode.rb
+++ b/lib/sup/modes/thread-view-mode.rb
@@ -30,6 +30,7 @@ EOS
k.add :activate_chunk, "Expand/collapse or activate item", :enter
k.add :expand_all_messages, "Expand/collapse all messages", 'E'
k.add :edit_draft, "Edit draft", 'e'
+ k.add :send_draft, "Send draft", 'y'
k.add :edit_labels, "Edit or add labels for a thread", 'l'
k.add :expand_all_quotes, "Expand/collapse all quotes in a message", 'o'
k.add :jump_to_next_open, "Jump to next open message", 'n'
@@ -283,6 +284,18 @@ EOS
end
end
+ def send_draft
+ m = @message_lines[curpos] or return
+ if m.is_draft?
+ mode = ResumeMode.new m
+ BufferManager.spawn "Send message", mode
+ BufferManager.kill_buffer self.buffer
+ mode.send_message
+ else
+ BufferManager.flash "Not a draft message!"
+ end
+ end
+
def jump_to_first_open loose_alignment=false
m = @message_lines[0] or return
if @layout[m].state != :closed
@@ -642,7 +655,7 @@ private
[[[:missing_message_color, "#{prefix}<an unreceived message>"]]]
when Message
message_patina_lines(chunk, state, start, parent, prefix, color, star_color) +
- (chunk.is_draft? ? [[[:draft_notification_color, prefix + " >>> This message is a draft. To edit, hit 'e'. <<<"]]] : [])
+ (chunk.is_draft? ? [[[:draft_notification_color, prefix + " >>> This message is a draft. Hit 'e' to edit, 'y' to send. <<<"]]] : [])
else
raise "Bad chunk: #{chunk.inspect}" unless chunk.respond_to?(:inlineable?) ## debugging
--
1.5.5.rc3
^ permalink raw reply [flat|nested] 2+ messages in thread
* [sup-talk] [PATCH] Allow to hit 'y' to send a draft in thread-view-mode
2008-11-16 17:32 [sup-talk] [PATCH] Allow to hit 'y' to send a draft in thread-view-mode Nicolas Pouillard
@ 2008-11-26 23:52 ` William Morgan
0 siblings, 0 replies; 2+ messages in thread
From: William Morgan @ 2008-11-26 23:52 UTC (permalink / raw)
Scary. Applied, thanks!
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-11-26 23:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-16 17:32 [sup-talk] [PATCH] Allow to hit 'y' to send a draft in thread-view-mode Nicolas Pouillard
2008-11-26 23:52 ` William Morgan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox