Is there a way to keep the cusror location off-screen in Vim / gVim while scrolling? Similar to many Windows editors.
I know about marks, and do use them. I also know the '.' mark (last edit location), But looking for other ideas.
I'm asking this because sometimes i want to keep the cursor at some location, scroll to another place using the mouse-wheel, and then just press an arow key or something to get me back to that location.
|
3
|
|
||
|
|
|
|
No. vim is a console application, so it doesn't really make sense to have the cursour off-screen (it's possible, but would just be confusing) An alternative solution, to paraphrase posts from this thread from comp.editors:
Marks seem like the other solution..
Basically Another option which Paul suggested,
|
||||
|
|
|
Google says that the cursor (and therefore current line) must be visible in Vi, so you'll have to use marks. |
||
|
|
|
Why don't you split the window, look at what you wanted to look at, and then close the split?
or
|
||||||
|
|
|
Sometimes you can avoid jumping to marks before entering text — |
||
|
|
|
|
Also very useful are the '' (2x single quotes) and `` (2x back quotes). The former jumps back to the line you were prior to the last jump (for instance, a page down). The latter jumps back to the line and column you were prior to the last jump. |
|||
|
|
