From 5736ea3027a5ebf9824997fa05d05dd74284d66a Mon Sep 17 00:00:00 2001 From: Bart Trojanowski Date: Sat, 21 Nov 2009 23:48:39 -0500 Subject: [PATCH 1/1] vim: place ... more inteligently when shortening 'from' list in search --- vim/plugin/notmuch.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index d786cedf..9cee5008 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -212,7 +212,7 @@ function! s:NM_cmd_search_fmtline(line) let max = g:notmuch_search_from_column_width let from = m[3] if strlen(from) >= max - let from = m[3][0:max-4] . '...' + let from = substitute(m[3][0:max-4], '[^A-Za-z1-9_]*$', '', '') . '...' endif return printf('%s %-20s | %s (%s)', m[2], from, m[4], m[5]) endfunction -- 2.43.0