aboutsummaryrefslogtreecommitdiffhomepage
path: root/vim
diff options
context:
space:
mode:
authorGravatar Peter John Hartman <peterjohnhartman@gmail.com>2011-01-26 16:57:12 +1000
committerGravatar Carl Worth <cworth@cworth.org>2011-01-26 16:57:58 +1000
commit4aeb291c783c18d0c63277275f67798f227e3017 (patch)
treef99f1cc08b125a63ad4855016600c00477e74329 /vim
parentdb70f3f0c4132b6113a68604dc8439360dc9b9b8 (diff)
vim: Get user email address from notmuch config file.
Here's a bitty patch to the vim plugin; it now calculates the primary email of the user based on a call to notmuch config. There's still a lot of work that needs to get done on notmuch.vim, e.g., the ability to have multiple emails/accounts.
Diffstat (limited to 'vim')
-rw-r--r--vim/plugin/notmuch.vim11
1 files changed, 5 insertions, 6 deletions
diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim
index 8d5d1c34..bdf03ba6 100644
--- a/vim/plugin/notmuch.vim
+++ b/vim/plugin/notmuch.vim
@@ -18,7 +18,8 @@
" along with Notmuch. If not, see <http://www.gnu.org/licenses/>.
"
" Authors: Bart Trojanowski <bart@jukie.net>
-
+" Contributors: Peter Hartman <peterjohnhartman@gmail.com>
+"
" --- configuration defaults {{{1
let s:notmuch_defaults = {
@@ -1024,11 +1025,9 @@ endfunction
" --- --- compose screen helper functions {{{2
function! s:NM_compose_get_user_email()
- let name = substitute(system('id -u -n'), '\v(^\s*|\s*$|\n)', '', 'g')
- let fqdn = substitute(system('hostname -f'), '\v(^\s*|\s*$|\n)', '', 'g')
-
- " TODO: do this properly
- return name . '@' . fqdn
+ " TODO: do this properly (still), i.e., allow for multiple email accounts
+ let email = substitute(system('notmuch config get user.primary_email'), '\v(^\s*|\s*$|\n)', '', 'g')
+ return email
endfunction
function! s:NM_compose_find_line_match(start, pattern, failure)