I usually have foldclose=all set so when I scroll through code, the folds automatically open and close. but sometimes I also like to quickly page through text using <C-d> and <C-u>. The problem is that this often jumps out of the fold I'm currently viewing and closes it before I have a chance to see the last bit. What I'm after is a way to page through the text and if I'm in an open fold, stop at the end of the fold if the next page would have taken me out of it. And if the cursor position is already at the last line of a fold, the next paging action will actually advance a page. I'm guessing this requires a vimscript function, so just want to see if anybody has done something similar.
|
feedback
|
|
You can start with this:
|
feedback
|
You could try to the following mapping
That move the cursor to the first/last visible line and the scroll so it become the middle line. | |||
|
feedback
|
|
Try adding this to your .vimrc file. I'm not sure it does exactly what your asking for, but its the best I've found.
| |||||
feedback
|
scrolloffoption help you? It lets you see a few lines below the lowest cursor position, so it may help you out. I havescrolloff=5and it's helped me a lot. – Prince Goulash Aug 11 '11 at 8:22