We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5dbe84 commit 2286cc7Copy full SHA for 2286cc7
autoload/pymode/folding.vim
@@ -30,8 +30,8 @@ fun! pymode#folding#text() " {{{
30
31
let line = strpart(line, 0, windowwidth - 2 -len(foldedlinecount))
32
let line = substitute(line, '\%("""\|''''''\)', '', '')
33
- let fillcharcount = windowwidth - len(line) - len(foldedlinecount)
34
- return line . '…' . repeat(s:symbol, fillcharcount) . ' ' . foldedlinecount . ' '
+ let fillcharcount = windowwidth - len(line) - len(foldedlinecount) + 1
+ return line . ' ' . repeat(s:symbol, fillcharcount) . ' ' . foldedlinecount
35
endfunction "}}}
36
37
0 commit comments