Преглед изворни кода

Make startify#center() use window width (#464)

ndavid пре 4 година
родитељ
комит
df0f1dbdc0
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      autoload/startify.vim

+ 1 - 1
autoload/startify.vim

@@ -442,7 +442,7 @@ endfunction
 function! startify#center(lines) abort
   let longest_line = max(map(copy(a:lines), 'strwidth(v:val)'))
   return map(copy(a:lines),
-        \ 'repeat(" ", (&columns / 2) - (longest_line / 2) - 1) . v:val')
+        \ 'repeat(" ", (winwidth(0) / 2) - (longest_line / 2) - 1) . v:val')
 endfunction
 
 " Function: s:get_lists {{{1