obsidian-jump-to-link
obsidian-jump-to-link copied to clipboard
Jump to anywhere limited
If there are too many words on the screen I only get short cuts for words on the top half and nothing for the bottom half. Is this expected and just a limitation of too many words?
@jin-ahn Try to increase the count of usable letters in settings. It should minimize the problem.
A better idea is to allow switching groups as done in vim plugins. But it needs to be implemented. So PR is always welcome!
@jin-ahn did letters increasement enough for you? I think I'll let this issue to stay open. Maybe, one day, I'll have some time to implement switching groups.
I was thinking of writing something that could generate link hints of arbitrary length, while still giving shorter hints to links close to the cursor. Is that what you meant by switching groups? Or would you be able to give an example of a vim plugin that does that?
I was thinking of writing something that could generate link hints of arbitrary length, while still giving shorter hints to links close to the cursor. Is that what you meant by switching groups? Or would you be able to give an example of a vim plugin that does that?
There are different approaches:
When I wrote the comment I thought about implementation as in Leap. So it'll:
- mark first group of matches by labels
- if there are not enough labels, user presses
space
so plugin marks second group of matches
But it was a first thought, so you might come up with a better of different solution.