From fb99d5be8362a32c47296cd5403ba935df3c14a6 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Thu, 14 Mar 2024 09:47:45 +0100 Subject: initial commit (move from dotfiles) --- autoload/coc/source/khard.vim | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 autoload/coc/source/khard.vim (limited to 'autoload/coc/source') diff --git a/autoload/coc/source/khard.vim b/autoload/coc/source/khard.vim new file mode 100644 index 0000000..63dd8bd --- /dev/null +++ b/autoload/coc/source/khard.vim @@ -0,0 +1,28 @@ +" global contacts list +let s:contacts = [] + +function! coc#source#khard#init() abort + " read contacts once on init + for line in systemlist('khard email --remove-first-line --parsable') + let [address, name, type] = split(line, "\t") + call add(s:contacts, printf('%s <%s>', name, address)) + endfor + + " plugin config + return { + \ 'priority': 9, + \ 'shortcut': 'khard', + \ 'filetypes': ['mail'], + \} +endfunction + +function coc#source#khard#should_complete(option) + " only complete addresses on to, cc, bcc and reply-to header lines + return tolower(a:option['line']) =~ '^\(to\|cc\|bcc\|reply-to\):' +endfunction + +function! coc#source#khard#complete(option, cb) abort + " init already loaded all the contacts, just forward them to CoC + call a:cb(s:contacts) +endfunction + -- cgit v1.2.3