3 This is a vim plug-in that provides a fully usable mail client interface,
4 utilizing the notmuch framework, through it's ruby bindings.
8 Simply run 'make install'. However, check that you have the depencies below.
12 Make sure your vim version has ruby support: check for +ruby in 'vim --version'
17 Check if you are able to run the following command cleanly:
19 % ruby -e "require 'notmuch'"
21 If you don't see any errors, it means it's working and you can go to the next
24 If it's not, you would need to compile them. Go to the 'bindings/ruby'
25 directory in the notmuch source tree.
29 Since libnotmuch library concentrates on things other than handling mail, we
30 need a library to do that, and for Ruby the best library for that is called
31 'mail'. The easiest way to install it is with ruby's gem. In most distro's the
32 package is called 'rubygems'.
34 Once you have gem, run:
38 In some systems gems are installed on a per-user basis by default, so make sure
39 you are running as the same user as the one that installed them.
41 This gem is not mandatory, but it's extremely recommended.
53 As an example to configure a key mapping to add the tag 'to-do' and archive,
56 let g:notmuch_rb_custom_search_maps = {
57 \ 't': 'search_tag("+to-do -inbox")',
60 let g:notmuch_rb_custom_show_maps = {
61 \ 't': 'show_tag("+to-do -inbox")',