aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim
diff options
context:
space:
mode:
authorGravatar Felipe Contreras <felipe.contreras@gmail.com>2010-12-09 21:16:38 +0200
committerGravatar Felipe Contreras <felipe.contreras@gmail.com>2011-05-04 23:06:10 +0300
commitac9b9cf56a05f626dfa2c91e3c522df32565af70 (patch)
treefa6c72a0dbbe343fc7f45d0e979940a1f76fa8bd /vim
parent3cac5f8acb3bf98636a81e44c620fd550843ed53 (diff)
vim: implement archive in show view
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'vim')
-rw-r--r--vim/plugin/notmuch.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim
index f4a4f233..3375a96c 100644
--- a/vim/plugin/notmuch.vim
+++ b/vim/plugin/notmuch.vim
@@ -495,7 +495,8 @@ function! s:NM_show_next_thread()
endfunction
function! s:NM_show_archive_thread()
- echo 'not implemented'
+ call <SID>NM_tag(b:nm_search_words, ['-inbox'])
+ call <SID>NM_show_next_thread()
endfunction
function! s:NM_show_mark_read_then_archive_thread()