in vim, with
:jumps
I see the jumplist, with G I go to the end of jumplist.
How I can go the end of list with a map ? I think in some like this
nn <leader>j :jumps<CR>G
but this, show the jumplist and go to the end of original file
|
feedback
|
|
The “more prompt” is not subject to mappings. From
You can define a mapping to reset the
When you use this Note that | |||||
feedback
|
|
Vim help documentation says the jump list is fixed to a maximum of 100 entries, and you can use a count with CTRL-I (prev) and CTRL-O (next) ... so the obvious way to "go to end" of the jumplist would be:
This would perform what you're looking for. Put it in a mapping or whatever you desire. | |||
|
feedback
|