A problem I've been having with Vim in general is that when I switch buffers in a window (either :[n]b or MiniBufExpl) the cursor position stays the same, but the window always positions itself so the row the cursor on is in the middle.

This is really annoying me since I visually remember where the top/bottom parts of the window are, not where they would be should the cursor be positioned in the middle of the window.

Is there a setting I can change to preserve a window's position over a buffer?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

It's interesting to note that it didn't bother me until I've read your question, lol.

Try this:

if v:version >= 700
  au BufLeave * let b:winview = winsaveview()
  au BufEnter * if(exists('b:winview')) | call winrestview(b:winview) | endif
endif
link|improve this answer
It didn't bother me, either. However I used to have this mapping: nmap <C-Tab> :bn<cr>'' – tungd Nov 23 '10 at 16:02
Hot damn, it works! Thank you. – andrew Nov 23 '10 at 16:07
Nice work, @poisonedbit, could you perhaps recommend a programming manual for VIM? – Art Sep 8 '11 at 6:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.