You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason org links that were previously working stop working because they are no longer in the ranges determined by avy--find-visible-regions. Examining the (text-properties-at (point)) does not show 'invisible for any part of the link (except after jumping to the first invisible part of the link, which is correctly determined).
I'm not sure if this happens because there normally is invisible link text preceding an org link and avy--next-visible-point is just skipping over the visible part for some reason. The same seems to happen when using (link-hint--next-property-with-value 'invisible nil). Using (next-single-property-change (point) 'invisible) after going to the invisible point correctly finds the link start though.
However, this happens even when org-descriptive-links is set to nil (e.g. sometimes for "[[Heading]]" when it is completely visible), and will happen on and off for org file and url links, so I have no idea what the problem is. This may related to #6?
The text was updated successfully, but these errors were encountered:
For some reason org links that were previously working stop working because they are no longer in the ranges determined by
avy--find-visible-regions
. Examining the(text-properties-at (point))
does not show'invisible
for any part of the link (except after jumping to the first invisible part of the link, which is correctly determined).I'm not sure if this happens because there normally is invisible link text preceding an org link and
avy--next-visible-point
is just skipping over the visible part for some reason. The same seems to happen when using(link-hint--next-property-with-value 'invisible nil)
. Using(next-single-property-change (point) 'invisible)
after going to the invisible point correctly finds the link start though.However, this happens even when org-descriptive-links is set to nil (e.g. sometimes for "[[Heading]]" when it is completely visible), and will happen on and off for org file and url links, so I have no idea what the problem is. This may related to #6?
The text was updated successfully, but these errors were encountered: