aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim/notmuch.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/notmuch.vim')
-rw-r--r--vim/notmuch.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/vim/notmuch.vim b/vim/notmuch.vim
index 25a16e9a..0cb94f6c 100644
--- a/vim/notmuch.vim
+++ b/vim/notmuch.vim
@@ -919,7 +919,8 @@ ruby << EOF
if mime_type != "text/html"
text = decoded
else
- IO.popen("elinks --dump", "w+") do |pipe|
+ IO.popen(VIM::evaluate('exists("g:notmuch_html_converter") ? ' +
+ 'g:notmuch_html_converter : "elinks --dump"'), "w+") do |pipe|
pipe.write(decode_body)
pipe.close_write
text = pipe.read