From adc883460996690d17d0c3d78cb93134fbe81575 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Sat, 7 Feb 2015 11:54:54 -0500 Subject: [PATCH] =?utf8?q?misc/vim:=20use=20shorter=20=E2=80=A6=20char?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- misc/vim/plugin/nit.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/vim/plugin/nit.vim b/misc/vim/plugin/nit.vim index 928643d..23e557a 100644 --- a/misc/vim/plugin/nit.vim +++ b/misc/vim/plugin/nit.vim @@ -139,7 +139,7 @@ fun NitOmnifuncAddAMatch(matches, words, name) let desc = get(a:words, 3, '') let desc = join(split(desc, '#nnnn#', 1), "\n") if strlen(pretty) > 40 - let pretty = pretty[:37] . '...' + let pretty = pretty[:39] . '…' endif call add(a:matches, {'word': a:name, 'abbr': pretty, 'menu': synopsis, 'info': desc, 'dup': 1}) endfun -- 1.7.9.5