]> git.eshelyaron.com Git - emacs.git/commitdiff
Add mouse interaction to xref
authorDmitry Gutov <dgutov@yandex.ru>
Sun, 4 Jan 2015 23:45:30 +0000 (02:45 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Sun, 4 Jan 2015 23:45:30 +0000 (02:45 +0300)
* lisp/progmodes/xref.el (xref--button-map): New variable.
(xref--mouse-2): New command.
(xref--insert-xrefs): Add `mouse-face' and `keymap' properties to
the inserted references.

lisp/ChangeLog
lisp/progmodes/xref.el

index f62dc0773b7c0703f9b49e1b44fc77a87f2c6b83..f413526c0b25e750fb4be9be0adaf8a7faa0823c 100644 (file)
@@ -1,3 +1,12 @@
+2015-01-04  Dmitry Gutov  <dgutov@yandex.ru>
+
+       Add mouse interaction to xref.
+
+       * progmodes/xref.el (xref--button-map): New variable.
+       (xref--mouse-2): New command.
+       (xref--insert-xrefs): Add `mouse-face' and `keymap' properties to
+       the inserted references.
+
 2015-01-04  Paul Eggert  <eggert@cs.ucla.edu>
 
        Less 'make' chatter for lisp dir
index 7bc6500a8de14432c1cf01879af22e4deef3beab..41b70c7eff2b7b0e156d1e1bb44017b2ed12d0c1 100644 (file)
@@ -405,6 +405,21 @@ WINDOW controls how the buffer is displayed:
 (defconst xref-buffer-name "*xref*"
   "The name of the buffer to show xrefs.")
 
+(defvar xref--button-map
+  (let ((map (make-sparse-keymap)))
+    (define-key map [(control ?m)] #'xref-goto-xref)
+    (define-key map [mouse-1] #'xref-goto-xref)
+    (define-key map [mouse-2] #'xref--mouse-2)
+    map))
+
+(defun xref--mouse-2 (event)
+  "Move point to the button and show the xref definition."
+  (interactive "e")
+  (mouse-set-point event)
+  (forward-line 0)
+  (xref--search-property 'xref-location)
+  (xref-show-location-at-point))
+
 (defun xref--insert-xrefs (xref-alist)
   "Insert XREF-ALIST in the current-buffer.
 XREF-ALIST is of the form ((GROUP . (XREF ...)) ...).  Where
@@ -417,7 +432,9 @@ GROUP is a string for decoration purposes and XREF is an
                     (with-slots (description location) xref
                       (xref--insert-propertized
                        (list 'xref-location location
-                             'face 'font-lock-keyword-face)
+                             'face 'font-lock-keyword-face
+                             'mouse-face 'highlight
+                             'keymap xref--button-map)
                        description))
                     (when (or more1 more2)
                       (insert "\n")))))