summaryrefslogtreecommitdiffhomepage
path: root/attic/misc.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2022-01-27 19:04:16 +0000
committerjao <jao@gnu.org>2022-01-27 19:05:15 +0000
commit0b8f339d25300909b77b15945b309f5931253120 (patch)
tree5d947f4f1beb873824e8896db9edb292ea5d97f4 /attic/misc.org
parent317f90a036c996bce5bed5cb15f606e8fd8f8a09 (diff)
downloadelibs-0b8f339d25300909b77b15945b309f5931253120.tar.gz
elibs-0b8f339d25300909b77b15945b309f5931253120.tar.bz2
clean-ups for avy/link-hint
Diffstat (limited to 'attic/misc.org')
-rw-r--r--attic/misc.org19
1 files changed, 19 insertions, 0 deletions
diff --git a/attic/misc.org b/attic/misc.org
index b9fdbfb..11f6162 100644
--- a/attic/misc.org
+++ b/attic/misc.org
@@ -1014,3 +1014,22 @@
;; pdf-view-next-line-or-next-page))
;; (advice-add f :after #'jao--refresh))
#+end_src
+* link-hint for w3m
+ #+begin_src emacs-lisp
+ (defun jao-link-hint--notmuch-next-url (&optional bound)
+ (link-hint--next-property 'w3m-href-anchor bound))
+
+ (defun jao-link-hint--notmuch-url-at-point ()
+ (get-text-property (point) 'w3m-href-anchor))
+
+ (link-hint-define-type 'notmuch-w3m-url
+ :next #'jao-link-hint--notmuch-next-url
+ :at-point-p #'jao-link-hint--notmuch-url-at-point
+ :vars '(notmuch-show-mode)
+ :open #'browse-url
+ :open-multiple t
+ :copy #'kill-new)
+
+ (push 'link-hint-notmuch-w3m-url link-hint-types)
+
+ #+end_src