We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b08d3f3 commit cfa5b12Copy full SHA for cfa5b12
autoload/easycomplete/util.vim
@@ -2087,7 +2087,7 @@ function! s:ParseAbbr(abbr)
2087
if max_length == 0 || strlen(a:abbr) <= max_length
2088
return a:abbr
2089
else
2090
- let short_abbr = a:abbr[0:max_length - 3] . ".."
+ let short_abbr = a:abbr[0:max_length - 2] . "…"
2091
return short_abbr
2092
endif
2093
endfunction
lua/easycomplete/util.lua
@@ -19,7 +19,7 @@ function util.parse_abbr(abbr)
19
if max_length == 0 or #abbr <= max_length then
20
return abbr
21
22
- local short_abbr = string.sub(abbr, 1, max_length - 3) .. ".."
+ local short_abbr = string.sub(abbr, 1, max_length - 2) .. "…"
23
24
end
25
0 commit comments