Package: notmuch-vim
Version: 0.6
Severity: normal
At the bottom of my e-mails where it'd folded signatures it said to
press 's' to show them, but the real key that does this is 'i'.
Attached is a patch to fix it.
The first change doesn't do anything ,but just seemed like the
thing to do to be consistent (looks like it used to do something
and was commented out perhaps.)
Second change fixes the visible instructions.
Thank you, - Jason
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.39-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages notmuch-vim depends on:
ii notmuch 0.6 thread-based email index, search a
ii vim-addon-manager 0.4.3 manager of addons for the Vim edit
notmuch-vim recommends no packages.
notmuch-vim suggests no packages.
-- no debconf information
diff --git a/notmuch.vim b/notmuch.vim
index 3873d5c..06df470 100644
--- a/notmuch.vim
+++ b/notmuch.vim
@@ -149,7 +149,7 @@ let g:notmuch_show_maps = {
\ 'b': ':call <SID>NM_show_fold_toggle(''b'', ''bdy'', !g:notmuch_show_fold_bodies)<CR>',
\ 'c': ':call <SID>NM_show_fold_toggle(''c'', ''cit'', !g:notmuch_show_fold_citations)<CR>',
\ 'h': ':call <SID>NM_show_fold_toggle(''h'', ''hdr'', !g:notmuch_show_fold_headers)<CR>',
- \ 'i': ':call <SID>NM_show_fold_toggle(''s'', ''sig'', !g:notmuch_show_fold_signatures)<CR>',
+ \ 'i': ':call <SID>NM_show_fold_toggle(''i'', ''sig'', !g:notmuch_show_fold_signatures)<CR>',
\
\ 'I': ':call <SID>NM_show_mark_read_thread()<CR>',
\ 'a': ':call <SID>NM_show_archive_thread()<CR>',
@@ -763,7 +763,7 @@ function! s:NM_cmd_show_parse(inlines)
let mode_type = ''
elseif part_end
let foldinfo = [ mode_type, mode_start, outlnum-1, len(info['msgs']),
- \ printf('[ %d-line signature. Press "s" to show. ]', outlnum - mode_start) ]
+ \ printf('[ %d-line signature. Press "i" to show. ]', outlnum - mode_start) ]
let mode_type = ''
endif
endif