File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ fun! pymode#folding#text() " {{{
1717 let line = getline (fs )
1818
1919 let nucolwidth = &fdc + &number * &numberwidth
20- let windowwidth = winwidth (0 ) - nucolwidth - 3
20+ let windowwidth = winwidth (0 ) - nucolwidth - 6
2121 let foldedlinecount = v: foldend - v: foldstart
2222
2323 " expand tabs into spaces
@@ -27,7 +27,7 @@ fun! pymode#folding#text() " {{{
2727 let line = strpart (line , 0 , windowwidth - 2 - len (foldedlinecount))
2828 let line = substitute (line , ' \%("""\|'''''' \)' , ' ' , ' ' )
2929 let fillcharcount = windowwidth - len (line ) - len (foldedlinecount)
30- return line . ' …' . repeat (" " ,fillcharcount) . foldedlinecount . ' … ' . ' '
30+ return line . ' …' . repeat (" " , fillcharcount) . ' ' . foldedlinecount . ' '
3131endfunction " }}}
3232
3333
You can’t perform that action at this time.
0 commit comments