runtime(netrw): add tag-jump-like prompt for goto bookmark (gb)#20211
Draft
jpseibt wants to merge 2 commits into
Draft
runtime(netrw): add tag-jump-like prompt for goto bookmark (gb)#20211jpseibt wants to merge 2 commits into
jpseibt wants to merge 2 commits into
Conversation
Problem: To goto a bookmark one needs to prefix a count for the
bookmark number (e.g., 2gb to open bookmark vim#2). As the
bookmark list gets or deletes entries, the numbers keep
changing, requiring listing the bookmarks with qb to
discover the desired bookmark number. Typing gb without
a count opens g:netrw_bookmarklist[-1].
Solution: If no count is given to gb, list all bookmarks and prompt
for a number using inputlist(), similar to tag jump with g].
Signed-off-by: J. Paulo Seibt <jpseibt@gmail.com>
Contributor
Author
|
@chrisbra I was considering implementing the same I found this new behavior with |
Signed-off-by: J. Paulo Seibt <jpseibt@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem:
2gbto open bookmark#2). As the bookmark list gets or deletes entries, the numbers keep changing, requiring listing the bookmarks withqbto discover the desired bookmark number. Typinggbwithout a count opensg:netrw_bookmarklist[-1].Solution:
gb, list all bookmarks and prompt for a number usinginputlist(), similar to tag jump withg].