vote up 3 vote down star

I have some Vim functions that make changes to the document format. When I call this function, I currently use something like the following to save and restore my cursor position:

func! Foo()
  :norm mz
  ...
  :norm `z
endf

This properly saves the cursor position, but it sometimes changes the window position, so that the current line moves from being near the top of the screen to being near the bottom or vice versa. Is there a way to preserve both cursor position and the on-screen position of the line?

flag

3 Answers

vote up 3 vote down check

You can save a mark for the first on-screen line that is displayed in the window and restore that as well. An example that executes a g? command on the whole buffer and restores both positions:

:noremap <F11> mkHmlggg?G`lzt`k

Walking through the command:

  • mk: set mark k for the current position
  • H: go to the first on-screen line
  • ml: set mark l for the this position
  • ggg?G: execute the command
  • `l: jump to mark l
  • zt: set this line the first on-screen line
  • `k: jump to mark k
link|flag
vote up 2 vote down

you can use getline() to save the current buffer line and winline() to save the current window line.

So it would go something like this:

  • save window line with winline()
  • move the cursor to the top of the window with :normal! H
  • save buffer line with getline()
  • ...
  • restore the buffer line with :exec 'normal! '.myline.'G'
  • scroll to the top with :normal zt
  • then restore the original window line with :exec 'normal! '.mywinline.'H'

There might be a few special cases you will have to take care of such as if the position is near the end or beginning of the file or if the file is smaller then the window size.

link|flag
vote up 0 vote down

Just :h getpos()

let save_cursor = getpos(".")
" MoveTheCursorAround
call setpos('.', save_cursor)
link|flag
That will not work. As JS Bangs stated that he needs to restore the window position as well. – JD Jun 5 at 20:23

Your Answer

Get an OpenID
or

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