Commit 9d24e998a04bc2a6c95db9fceb8c82c5cc9b0496

(EXPERIMENTAL) Add 'I' key to open inbox+label buffers

Signed-off-by: Eduardo Habkost <ehabkost@raisama.net>
bin/sup
(3 / 0)
  
7575 k.add :search, "Search all messages", '\\', 'F'
7676 k.add :search_unread, "Show all unread messages", 'U'
7777 k.add :list_labels, "List labels", 'L'
78 k.add :inbox_labels, "Open Inbox label", 'I'
7879 k.add :poll, "Poll for new messages", 'P'
7980 k.add :compose, "Compose new message", 'm', 'c'
8081 k.add :nothing, "Do nothing", :ctrl_g
247247 SearchResultsMode.spawn_from_query "is:unread"
248248 when :list_labels
249249 LabelListMode.ask_for_label("Show threads with label (enter for listing): ", "Label list") { |l| LabelSearchResultsMode.spawn_nicely l }
250 when :inbox_labels
251 LabelListMode.ask_for_label("Inbox threads with label (enter for listing): ", "Inbox label list") { |l| InboxSubsetMode.spawn_nicely l }
250252 when :compose
251253 ComposeMode.spawn_nicely
252254 when :poll