dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

commit fb90f401970dc47286792292b26521c13d0c46c5
parent 9834552cb29958c7b3d0d7e74d5ce71ed197b2ce
Author: Lukas Henkel <lh@entf.net>
Date:   Fri, 22 Apr 2022 21:18:02 +0200

Navigate through xref with extra mouse buttons

Diffstat:
Minit.el | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/init.el b/init.el @@ -129,7 +129,10 @@ ("C-# a" . mc/mark-all-like-this-dwim) ("C-# w" . mc/mark-all-words-like-this) ("C-# n" . mc/mark-next-like-this) - ("C-# p" . mc/mark-previous-like-this))) + ("C-# p" . mc/mark-previous-like-this) + + ("<mouse-8>" . xref-go-back) + ("<mouse-9>" . xref-go-forward))) (lh/define-keys icomplete-fido-mode-map (("TAB" . icomplete-force-complete)