From d8da3a2a9e1dd9ab476e6f8627dc5baae83b1d50 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 27 Apr 2013 10:17:29 +0200 Subject: [PATCH] adjust cursor movements --- plugin/startify.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/startify.vim b/plugin/startify.vim index 20789a9..fb059ae 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -100,7 +100,7 @@ function! s:insane_in_the_membrane() abort autocmd startify CursorMoved call s:set_cursor() autocmd startify BufWipeout autocmd! startify * - call cursor(6, 5) + call cursor(4, 5) endfunction " Function: s:set_cursor {{{1 @@ -113,10 +113,10 @@ function! s:set_cursor() abort call cursor(s:line_new, 5) " going down else let s:line_new -= 1 - call cursor((s:line_new < 4 ? 4 : s:line_new), 5) " going up + call cursor((s:line_new < 2 ? 2 : s:line_new), 5) " going up endif else - call cursor((s:line_new < 4 ? 4 : 0), 5) " hold cursor in column + call cursor((s:line_new < 2 ? 2 : 0), 5) " hold cursor in column endif endfunction