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
sometimes, one would just like to see what the underlying link is. some sort of link-hint-display-link might be nice.
here's something that doesn't really do the right thing (and doesn't actually use the infrastructure link-hint.el provides), but gives an idea. i could try to flush this out, if of interest.
(defun link-hint-display-link ()
"Display a visible link of a supported type."
(interactive)
(require 'link-hint)
(avy-with link-hint-display-link
(let* ((link-hint-types (link-hint--valid-types :copy))
(links (link-hint--get-links))
link)
(when links
(setq link (link-hint--process links))
(when link
(message "link: %s" (plist-get link ':args)))))))
The text was updated successfully, but these errors were encountered:
sometimes, one would just like to see what the underlying link is. some sort of
link-hint-display-link
might be nice.here's something that doesn't really do the right thing (and doesn't actually use the infrastructure link-hint.el provides), but gives an idea. i could try to flush this out, if of interest.
The text was updated successfully, but these errors were encountered: