feat: new arrow top
and arrow bot
commands to jump to the top and bottom
#2294
+55
−26
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR deprecates
arrow -99999999
andarrow 99999999
, replacing them witharrow top
andarrow bot
, respectively.-99999999
and99999999
are still available but will trigger a warning.This change is in preparation for an upcoming navigation wraparound feature — when the cursor reaches the top or bottom of the list, it will automatically jump to the opposite end.
Some users requested this feature, and I initially provided a plugin as a solution. However, I believe it's worth integrating into the core.
The issue is that when users enable this feature, pressing
gg
orG
would cause the cursor to behave erratically sincearrow 99999999
would make it loop through the file list multiple times, sotop
andbot
(bottom) are introduced.