From 51e9f84eaf215c1608d3d535e85517e77ea35d20 Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Sun, 20 Apr 2008 22:25:06 -0500 Subject: expand the space for line numbers a bit --- vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vimrc b/vimrc index 22d65e5..34808d0 100644 --- a/vimrc +++ b/vimrc @@ -309,11 +309,11 @@ function Base_foldtext(...) let line = substitute(line, '^\s*\(.\{-}\)\s*$', '\1', '') " align everything, and pad the end of the display with - - let line = printf('%-' . (63 - v:foldlevel) . 's', line) + let line = printf('%-' . (62 - v:foldlevel) . 's', line) let line = substitute(line, '\%( \)\@<= \%( *$\)\@=', '-', 'g') " format the line count - let nlines = printf('%12s', + let nlines = printf('%13s', \ '(' . (v:foldend - v:foldstart + 1) . ' lines) ') return '+-' . v:folddashes . ' ' . line . nlines -- cgit v1.2.3-54-g00ecf