2016-08-13 13:43:37 +00:00
|
|
|
;;; core-jump.el --- Spacemacs Core File
|
|
|
|
;;
|
2018-01-04 07:00:25 +00:00
|
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
2016-08-13 13:43:37 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
|
|
|
(defvar spacemacs-default-jump-handlers '()
|
|
|
|
"List of jump handlers available in every mode.")
|
|
|
|
|
|
|
|
(defvar-local spacemacs-jump-handlers '()
|
|
|
|
"List of jump handlers local to this buffer.")
|
|
|
|
|
|
|
|
(defmacro spacemacs|define-jump-handlers (mode &rest handlers)
|
|
|
|
"Defines jump handlers for the given MODE.
|
|
|
|
This defines a variable `spacemacs-jump-handlers-MODE' to which
|
|
|
|
handlers can be added, and a function added to MODE-hook which
|
|
|
|
sets `spacemacs-jump-handlers' in buffers of that mode."
|
|
|
|
(let ((mode-hook (intern (format "%S-hook" mode)))
|
|
|
|
(func (intern (format "spacemacs//init-jump-handlers-%S" mode)))
|
|
|
|
(handlers-list (intern (format "spacemacs-jump-handlers-%S" mode))))
|
|
|
|
`(progn
|
|
|
|
(defvar ,handlers-list ',handlers
|
|
|
|
,(format (concat "List of mode-specific jump handlers for %S. "
|
|
|
|
"These take priority over those in "
|
|
|
|
"`spacemacs-default-jump-handlers'.")
|
|
|
|
mode))
|
|
|
|
(defun ,func ()
|
|
|
|
(setq spacemacs-jump-handlers
|
|
|
|
(append ,handlers-list
|
|
|
|
spacemacs-default-jump-handlers)))
|
|
|
|
(add-hook ',mode-hook ',func)
|
2016-09-05 02:29:41 +00:00
|
|
|
(with-eval-after-load 'bind-map
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode ',mode
|
2016-11-22 14:20:03 +00:00
|
|
|
"gg" 'spacemacs/jump-to-definition
|
|
|
|
"gG" 'spacemacs/jump-to-definition-other-window)))))
|
2016-08-13 13:43:37 +00:00
|
|
|
|
2017-11-24 21:31:57 +00:00
|
|
|
(defmacro spacemacs|define-reference-handlers (mode &rest handlers)
|
|
|
|
"Defines reference handlers for the given MODE.
|
|
|
|
This defines a variable `spacemacs-reference-handlers-MODE' to which
|
|
|
|
handlers can be added, and a function added to MODE-hook which
|
|
|
|
sets `spacemacs-reference-handlers' in buffers of that mode."
|
|
|
|
(let ((mode-hook (intern (format "%S-hook" mode)))
|
|
|
|
(func (intern (format "spacemacs//init-reference-handlers-%S" mode)))
|
|
|
|
(handlers-list (intern (format "spacemacs-reference-handlers-%S" mode))))
|
|
|
|
`(progn
|
|
|
|
(defvar ,handlers-list ',handlers
|
|
|
|
,(format (concat "List of mode-specific reference handlers for %S. "
|
|
|
|
"These take priority over those in "
|
|
|
|
"`spacemacs-default-reference-handlers'.")
|
|
|
|
mode))
|
|
|
|
(defun ,func ()
|
|
|
|
(setq spacemacs-reference-handlers
|
|
|
|
(append ,handlers-list
|
|
|
|
spacemacs-default-reference-handlers)))
|
|
|
|
(add-hook ',mode-hook ',func)
|
|
|
|
(with-eval-after-load 'bind-map
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode ',mode
|
|
|
|
"gr" 'spacemacs/jump-to-reference)))))
|
|
|
|
|
2016-08-13 13:43:37 +00:00
|
|
|
(defun spacemacs/jump-to-definition ()
|
2016-11-22 14:20:03 +00:00
|
|
|
"Jump to definition around point using the best tool for this action."
|
2016-08-13 13:43:37 +00:00
|
|
|
(interactive)
|
|
|
|
(catch 'done
|
|
|
|
(let ((old-buffer (current-buffer))
|
|
|
|
(old-point (point)))
|
2016-08-24 08:04:50 +00:00
|
|
|
(dolist (-handler spacemacs-jump-handlers)
|
|
|
|
(let ((handler (if (listp -handler) (car -handler) -handler))
|
|
|
|
(async (when (listp -handler)
|
|
|
|
(plist-get (cdr -handler) :async))))
|
|
|
|
(ignore-errors
|
|
|
|
(call-interactively handler))
|
2017-02-10 06:31:23 +00:00
|
|
|
(when (or (eq async t)
|
|
|
|
(and (fboundp async) (funcall async))
|
2016-08-24 08:04:50 +00:00
|
|
|
(not (eq old-point (point)))
|
|
|
|
(not (equal old-buffer (current-buffer))))
|
|
|
|
(throw 'done t)))))
|
2016-08-13 13:43:37 +00:00
|
|
|
(message "No jump handler was able to find this symbol.")))
|
|
|
|
|
2016-11-22 14:20:03 +00:00
|
|
|
(defun spacemacs/jump-to-definition-other-window ()
|
|
|
|
"Jump to definition around point in other window."
|
|
|
|
(interactive)
|
|
|
|
(let ((pos (point)))
|
|
|
|
;; since `spacemacs/jump-to-definition' can be asynchronous we cannot use
|
|
|
|
;; `save-excursion' here, so we have to bear with the jumpy behavior.
|
|
|
|
(switch-to-buffer-other-window (current-buffer))
|
|
|
|
(goto-char pos)
|
|
|
|
(spacemacs/jump-to-definition)))
|
|
|
|
|
2017-11-24 21:31:57 +00:00
|
|
|
(defun spacemacs/jump-to-reference ()
|
|
|
|
"Jump to reference around point using the best tool for this action."
|
|
|
|
(interactive)
|
|
|
|
(catch 'done
|
|
|
|
(let ((old-window (selected-window))
|
|
|
|
(old-buffer (current-buffer))
|
|
|
|
(old-point (point)))
|
|
|
|
(dolist (-handler spacemacs-reference-handlers)
|
|
|
|
(let ((handler (if (listp -handler) (car -handler) -handler))
|
|
|
|
(async (when (listp -handler)
|
|
|
|
(plist-get (cdr -handler) :async))))
|
|
|
|
(ignore-errors
|
|
|
|
(call-interactively handler))
|
|
|
|
(when (or (eq async t)
|
|
|
|
(and (fboundp async) (funcall async))
|
|
|
|
(not (eq old-point (point)))
|
|
|
|
(not (equal old-buffer (window-buffer old-window))))
|
|
|
|
(throw 'done t)))))
|
|
|
|
(message "No reference handler was able to find this symbol.")))
|
|
|
|
|
|
|
|
(defun spacemacs/jump-to-reference-other-window ()
|
|
|
|
"Jump to reference around point in other window."
|
|
|
|
(interactive)
|
|
|
|
(let ((pos (point)))
|
|
|
|
;; since `spacemacs/jump-to-reference' can be asynchronous we cannot use
|
|
|
|
;; `save-excursion' here, so we have to bear with the jumpy behavior.
|
|
|
|
(switch-to-buffer-other-window (current-buffer))
|
|
|
|
(goto-char pos)
|
|
|
|
(spacemacs/jump-to-reference)))
|
|
|
|
|
2016-08-13 13:43:37 +00:00
|
|
|
;; Set the `:jump' property manually instead of just using `evil-define-motion'
|
|
|
|
;; in an `eval-after-load' macro invocation because doing that prevents
|
|
|
|
;; `describe-function' from correctly finding the source.
|
|
|
|
;;
|
|
|
|
;; See discussion on https://github.com/syl20bnr/spacemacs/pull/6771
|
|
|
|
(with-eval-after-load 'evil
|
2017-11-24 21:31:57 +00:00
|
|
|
(evil-set-command-property 'spacemacs/jump-to-definition :jump t)
|
|
|
|
(evil-set-command-property 'spacemacs/jump-to-reference :jump t))
|
2016-08-13 13:43:37 +00:00
|
|
|
|
|
|
|
(provide 'core-jump)
|