[PATCH v2] notmuch.vim can now archive threads using a from the show screen

Subject: [PATCH v2] notmuch.vim can now archive threads using a from the show screen

Date: Mon, 04 Apr 2011 22:31:39 -0700

To: Felipe Contreras

Cc: notmuch@notmuchmail.org

From: Jeff Richards


On Mon, 4 Apr 2011 18:58:48 +0300, Felipe Contreras <felipe.contreras@gmail.com> wrote:
> On Mon, Apr 4, 2011 at 4:46 AM, Jeff Richards <jeff@jrichards.ca> wrote:
> > Implements the already shelled out function for archiving messages while looking at a message.
> 
> I'm not sure if this should also remove from 'unread', or we should
> have two actions, one that removes from both unread and 'inbox', and
> another one only for 'inbox'.
> 

Yep, that's a good point.  Following the functionality for the search screen, the show screen should just remove the inbox tag and that's it.  

---
 vim/plugin/notmuch.vim |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim
index 67501d8..eae5297 100644
--- a/vim/plugin/notmuch.vim
+++ b/vim/plugin/notmuch.vim
@@ -507,7 +507,7 @@ function! s:NM_show_next_thread()
 endfunction
 
 function! s:NM_show_archive_thread()
-        echo 'not implemented'
+        call <SID>NM_add_remove_tags(b:nm_search_words, '-', ['inbox'])
 endfunction
 
 function! s:NM_show_mark_read_then_archive_thread()
-- 
1.7.2.3


Thread: