1 if exists("g:loaded_notmuch_rb")
5 if !has("ruby") || version < 700
9 let g:loaded_notmuch_rb = "yep"
11 let g:notmuch_rb_folders_maps = {
12 \ '<Enter>': 'folders_show_search()',
13 \ 's': 'folders_search_prompt()',
14 \ '=': 'folders_refresh()',
17 let g:notmuch_rb_search_maps = {
18 \ 'q': 'kill_this_buffer()',
19 \ '<Enter>': 'search_show_thread(1)',
20 \ '<Space>': 'search_show_thread(2)',
21 \ 'A': 'search_tag("-inbox -unread")',
22 \ 'I': 'search_tag("-unread")',
23 \ 't': 'search_tag("")',
24 \ 's': 'search_search_prompt()',
25 \ '=': 'search_refresh()',
26 \ '?': 'search_info()',
29 let g:notmuch_rb_show_maps = {
30 \ 'q': 'kill_this_buffer()',
31 \ 'A': 'show_tag("-inbox -unread")',
32 \ 'I': 'show_tag("-unread")',
33 \ 't': 'show_tag("")',
34 \ 'o': 'show_open_msg()',
35 \ 'e': 'show_extract_msg()',
36 \ 's': 'show_save_msg()',
37 \ 'r': 'show_reply()',
39 \ '<Tab>': 'show_next_msg()',
42 let g:notmuch_rb_compose_maps = {
43 \ ',s': 'compose_send()',
44 \ ',q': 'compose_quit()',
47 let s:notmuch_rb_folders_default = [
48 \ [ 'new', 'tag:inbox and tag:unread' ],
49 \ [ 'inbox', 'tag:inbox' ],
50 \ [ 'unread', 'tag:unread' ],
53 let s:notmuch_rb_date_format_default = '%d.%m.%y'
54 let s:notmuch_rb_datetime_format_default = '%d.%m.%y %H:%M:%S'
55 let s:notmuch_rb_reader_default = 'mutt -f %s'
56 let s:notmuch_rb_sendmail_default = 'sendmail'
57 let s:notmuch_rb_folders_count_threads_default = 0
59 if !exists('g:notmuch_rb_date_format')
60 let g:notmuch_rb_date_format = s:notmuch_rb_date_format_default
63 if !exists('g:notmuch_rb_datetime_format')
64 let g:notmuch_rb_datetime_format = s:notmuch_rb_datetime_format_default
67 if !exists('g:notmuch_rb_reader')
68 let g:notmuch_rb_reader = s:notmuch_rb_reader_default
71 if !exists('g:notmuch_rb_sendmail')
72 let g:notmuch_rb_sendmail = s:notmuch_rb_sendmail_default
75 if !exists('g:notmuch_rb_folders_count_threads')
76 let g:notmuch_rb_folders_count_threads = s:notmuch_rb_folders_count_threads_default
79 function! s:new_file_buffer(type, fname)
80 exec printf('edit %s', a:fname)
81 execute printf('set filetype=notmuch-%s', a:type)
82 execute printf('set syntax=notmuch-%s', a:type)
83 ruby $buf_queue.push($curbuf.number)
86 function! s:compose_unload()
90 if input('[s]end/[q]uit? ') =~ '^s'
97 function! s:compose_quit()
98 let b:compose_done = 1
99 call s:kill_this_buffer()
102 function! s:compose_send()
103 let b:compose_done = 1
104 let fname = expand('%')
110 let cmdtxt = g:notmuch_sendmail . ' -t -f ' . s:reply_from . ' < ' . fname
111 let out = system(cmdtxt)
112 let err = v:shell_error
117 echo 'Eeek! unable to send mail'
123 echo 'Mail sent successfully.'
124 call s:kill_this_buffer()
127 function! s:show_next_msg()
129 r, c = $curwin.cursor
130 n = $curbuf.line_number
131 i = $messages.index { |m| n >= m.start && n <= m.end }
135 VIM::command("normal #{m.start}zt")
136 $curwin.cursor = r, c
141 function! s:show_reply()
142 ruby open_reply get_message.mail
143 let b:compose_done = 0
144 call s:set_map(g:notmuch_rb_compose_maps)
145 autocmd BufUnload <buffer> call s:compose_unload()
149 function! s:show_info()
150 ruby vim_puts get_message.inspect
153 function! s:show_extract_msg()
156 m.mail.attachments.each do |a|
157 File.open(a.filename, 'w') do |f|
158 f.write a.body.decoded
159 print "Extracted '#{a.filename}'"
165 function! s:show_open_msg()
168 mbox = File.expand_path('~/.notmuch/vim_mbox')
169 cmd = VIM::evaluate('g:notmuch_rb_reader') % mbox
170 system "notmuch show --format=mbox id:#{m.message_id} > #{mbox} && #{cmd}"
174 function! s:show_save_msg()
175 let file = input('File name: ')
177 file = VIM::evaluate('file')
179 system "notmuch show --format=mbox id:#{m.message_id} > #{file}"
183 function! s:show_tag(intags)
185 let tags = input('tags: ')
189 ruby do_tag(get_cur_view, VIM::evaluate('l:tags'))
190 call s:show_next_thread()
193 function! s:search_search_prompt()
194 let text = input('Search: ')
197 $cur_search = VIM::evaluate('text')
198 search_render($cur_search)
200 setlocal nomodifiable
203 function! s:search_info()
204 ruby vim_puts get_thread_id
207 function! s:search_refresh()
209 ruby search_render($cur_search)
210 setlocal nomodifiable
213 function! s:search_tag(intags)
215 let tags = input('tags: ')
219 ruby do_tag(get_thread_id, VIM::evaluate('l:tags'))
223 function! s:folders_search_prompt()
224 let text = input('Search: ')
228 function! s:folders_refresh()
230 ruby folders_render()
231 setlocal nomodifiable
236 function! s:show_cursor_moved()
239 VIM::command('setlocal modifiable')
241 VIM::command('setlocal nomodifiable')
246 function! s:show_next_thread()
247 call s:kill_this_buffer()
248 if line('.') != line('$')
250 call s:search_show_thread(0)
252 echo 'No more messages.'
256 function! s:kill_this_buffer()
261 VIM::command("buffer #{b}") if b
265 function! s:set_map(maps)
267 for [key, code] in items(a:maps)
268 let cmd = printf(":call <SID>%s<CR>", code)
269 exec printf('nnoremap <buffer> %s %s', key, cmd)
273 function! s:new_buffer(type)
275 setlocal buftype=nofile bufhidden=hide
277 execute printf('set filetype=notmuch-%s', a:type)
278 execute printf('set syntax=notmuch-%s', a:type)
279 ruby $buf_queue.push($curbuf.number)
282 function! s:set_menu_buffer()
283 setlocal nomodifiable
290 function! s:show(thread_id)
291 call s:new_buffer('show')
294 thread_id = VIM::evaluate('a:thread_id')
295 $cur_thread = thread_id
297 $curbuf.render do |b|
299 q = db.query(get_cur_view)
301 msgs = q.search_messages
303 m = Mail.read(msg.filename)
304 part = m.find_first_text
305 nm_m = Message.new(msg, m)
307 date_fmt = VIM::evaluate('g:notmuch_rb_datetime_format')
308 date = Time.at(msg.date).strftime(date_fmt)
310 b << "%s %s (%s)" % [msg['from'], date, msg.tags]
311 b << "Subject: %s" % [msg['subject']]
312 b << "To: %s" % m['to']
313 b << "Cc: %s" % m['cc']
314 b << "Date: %s" % m['date']
315 nm_m.body_start = b.count
316 b << "--- %s ---" % part.mime_type
317 part.convert.each_line do |l|
326 $messages.each_with_index do |msg, i|
327 VIM::command("syntax region nmShowMsg#{i}Desc start='\\%%%il' end='\\%%%il' contains=@nmShowMsgDesc" % [msg.start, msg.start + 1])
328 VIM::command("syntax region nmShowMsg#{i}Head start='\\%%%il' end='\\%%%il' contains=@nmShowMsgHead" % [msg.start + 1, msg.body_start])
329 VIM::command("syntax region nmShowMsg#{i}Body start='\\%%%il' end='\\%%%dl' contains=@nmShowMsgBody" % [msg.body_start, msg.end])
332 setlocal nomodifiable
333 call s:set_map(g:notmuch_rb_show_maps)
336 function! s:search_show_thread(mode)
338 mode = VIM::evaluate('a:mode')
342 when 1; $cur_filter = nil
343 when 2; $cur_filter = $cur_search
345 VIM::command("call s:show('#{id}')")
349 function! s:search(search)
350 call s:new_buffer('search')
352 $cur_search = VIM::evaluate('a:search')
353 search_render($cur_search)
355 call s:set_menu_buffer()
356 call s:set_map(g:notmuch_rb_search_maps)
357 autocmd CursorMoved <buffer> call s:show_cursor_moved()
360 function! s:folders_show_search()
362 n = $curbuf.line_number
364 VIM::command("call s:search('#{s}')")
368 function! s:folders()
369 call s:new_buffer('folders')
370 ruby folders_render()
371 call s:set_menu_buffer()
372 call s:set_map(g:notmuch_rb_folders_maps)
377 function! s:set_defaults()
378 if exists('g:notmuch_rb_custom_search_maps')
379 call extend(g:notmuch_rb_search_maps, g:notmuch_rb_custom_search_maps)
382 if exists('g:notmuch_rb_custom_show_maps')
383 call extend(g:notmuch_rb_show_maps, g:notmuch_rb_custom_show_maps)
386 " TODO for now lets check the old folders too
387 if !exists('g:notmuch_rb_folders')
388 if exists('g:notmuch_folders')
389 let g:notmuch_rb_folders = g:notmuch_folders
391 let g:notmuch_rb_folders = s:notmuch_rb_folders_default
396 function! s:NotMuch()
397 call s:set_defaults()
415 $mail_installed = defined?(Mail)
419 config = ENV['NOTMUCH_CONFIG'] || '~/.notmuch-config'
420 File.open(File.expand_path(config)).each do |l|
427 key = "%s.%s" % [group, $1]
433 $db_name = $config['database.path']
434 $email_address = "%s <%s>" % [$config['user.name'], $config['user.primary_email']]
438 VIM::command("echo '#{s.to_s}'")
442 VIM::command("echo '#{s.inspect}'")
446 # TODO email format, aliases
448 a.gsub!(/[\.@].*/, '')
450 a.gsub!(/ \(.*\)/, '')
455 n = $curbuf.line_number - 1
456 return "thread:%s" % $threads[n]
460 n = $curbuf.line_number
461 return $messages.find { |m| n >= m.start && n <= m.end }
466 return "#{$cur_thread} and (#{$cur_filter})"
473 db = Notmuch::Database.new($db_name, :mode => Notmuch::MODE_READ_WRITE)
482 db = Notmuch::Database.new($db_name)
492 'Notmuch-Help: Type in your message here; to help you use these bindings:',
493 'Notmuch-Help: ,s - send the message (Notmuch-Help lines will be removed)',
494 'Notmuch-Help: ,q - abort the message',
496 reply = orig.reply do |m|
499 m.to = [orig[:from].to_s, orig[:to].to_s]
502 m.from = $email_address
504 m.content_transfer_encoding = '7bit'
507 dir = File.expand_path('~/.notmuch/compose')
508 FileUtils.mkdir_p(dir)
509 Tempfile.open(['nm-', '.mail'], dir) do |f|
517 addr = Mail::Address.new(orig[:from].value)
519 name = addr.local + "@" if name.nil? && !addr.local.nil?
523 name = "somebody" if name.nil?
525 body_lines << "%s wrote:" % name
526 part = orig.find_first_text
527 part.convert.each_line do |l|
528 body_lines << "> %s" % l.chomp
534 reply.body = body_lines.join("\n")
536 lines += reply.to_s.lines.map { |e| e.chomp }
539 old_count = lines.count - 1
543 sig_file = File.expand_path('~/.signature')
544 if File.exists?(sig_file)
546 f.write(File.read(sig_file))
551 VIM::command("let s:reply_from='%s'" % reply.from.first.to_s)
552 VIM::command("call s:new_file_buffer('compose', '#{f.path}')")
553 VIM::command("call cursor(#{old_count}, 0)")
558 $curbuf.render do |b|
559 folders = VIM::evaluate('g:notmuch_rb_folders')
560 count_threads = VIM::evaluate('g:notmuch_rb_folders_count_threads')
563 folders.each do |name, search|
566 count = count_threads ? q.search_threads.count : q.search_messages.count
567 b << "%9d %-20s (%s)" % [count, name, search]
573 def search_render(search)
574 date_fmt = VIM::evaluate('g:notmuch_rb_date_format')
575 db = Notmuch::Database.new($db_name)
580 $render = $curbuf.render_staged(t) do |b, items|
582 authors = e.authors.to_utf8.split(/[,|]/).map { |a| author_filter(a) }.join(",")
583 date = Time.at(e.newest_date).strftime(date_fmt)
585 subject = Mail::Field.new("Subject: " + e.subject).to_s
587 subject = e.subject.force_encoding('utf-8')
589 b << "%-12s %3s %-20.20s | %s (%s)" % [date, e.matched_messages, authors, subject, e.tags]
590 $threads << e.thread_id
595 def do_tag(filter, tags)
598 q.search_messages.each do |e|
600 tags.split.each do |t|
611 e.tags_to_maildir_flags
617 attr_accessor :start, :body_start, :end
618 attr_reader :message_id, :filename, :mail
620 def initialize(msg, mail)
621 @message_id = msg.message_id
622 @filename = msg.filename
626 mail.import_headers(msg) if not $mail_installed
630 "id:%s" % @message_id
634 "id:%s, file:%s" % [@message_id, @filename]
639 def initialize(buffer, enumerable, block)
641 @enumerable = enumerable
645 @b.render { do_next }
649 @last_render - @b.line_number <= $curwin.height
653 items = @enumerable.take($curwin.height * 2)
654 return if items.empty?
655 @block.call @b, items
656 @last_render = @b.count
665 def render_staged(enumerable, &block)
666 StagedRender.new(self, enumerable, block)
672 (1..old_count).each do
684 class Notmuch::Message
690 # workaround for bug in vim's ruby
698 def self.parse(string)
699 return nil if string.empty?
700 return Header.new(string.split(/,\s+/))
708 def initialize(string = nil)
715 if string =~ /(.*?(\r\n|\n))\2/m
716 head, body = $1, $' || '', $2
718 head, body = string, ''
724 @headers[name.to_sym]
728 @headers[name.to_sym] = value
731 def format_header(value)
732 value.to_s.tr('_', '-').gsub(/(\w+)/) { $1.capitalize }
737 @headers.each do |key, value|
738 buffer << "%s: %s\r\n" %
739 [format_header(key), value]
767 r = Mail::Message.new
771 r[:in_reply_to] = self[:message_id]
772 r[:references] = self[:references]
776 HEADERS = [ :from, :to, :cc, :references, :in_reply_to, :reply_to, :message_id ]
778 def import_headers(m)
780 dashed = format_header(e)
781 @headers[e] = Header.parse(m[dashed])
788 if not $mail_installed
789 puts "WARNING: Install the 'mail' gem, without it support is limited"
791 def self.read(filename)
792 Message.new(File.open(filename, 'rb') { |f| f.read })
796 include SimpleMessage
803 return self if not multipart?
804 return text_part || html_part
808 if mime_type != "text/html"
811 IO.popen("elinks --dump", "w+") do |pipe|
812 pipe.write(decode_body)
824 RUBY_VERSION >= "1.9" ? force_encoding('utf-8') : self
833 command NotMuch :call s:NotMuch()
835 " vim: set noexpandtab: