From 1db348a9be8717c96a4f8e0baae8b22a8ba149ac Mon Sep 17 00:00:00 2001 From: David Morgan Date: Sat, 11 Mar 2023 13:24:49 +0000 Subject: [PATCH] Add link-hint --- .emacs.d/lisp/init-navigation.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index 3dd91b6..0a82115 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -124,5 +124,10 @@ Or remove all highlighted symbols in the current buffer (with`ARG')." (put 'goto-last-point 'repeat-map 'goto-last-point-repeat-map) :bind ("C-c <" . goto-last-point)) +(use-package link-hint + :bind + ("C-c C-l" . link-hint-open-link) + ("C-c C-S-l" . link-hint-copy-link)) + (provide 'init-navigation) ;;; init-navigation.el ends here