2017-06-08 11:47:56 +02:00
|
|
|
;;; feature/jump/autoload.el -*- lexical-binding: t; -*-
|
2017-03-15 22:44:42 -04:00
|
|
|
|
2017-05-21 12:16:25 +02:00
|
|
|
(defvar +jump--rg-installed-p (executable-find "rg"))
|
|
|
|
(defvar +jump--ag-installed-p (executable-find "ag"))
|
|
|
|
|
2017-03-15 22:44:42 -04:00
|
|
|
;;;###autoload
|
|
|
|
(defun +jump/definition (&optional other-window)
|
2017-05-21 15:06:15 +02:00
|
|
|
"Jump to the definition of the symbol at point.
|
2017-05-21 12:16:25 +02:00
|
|
|
|
2017-05-21 15:06:15 +02:00
|
|
|
Tries xref and falls back to `dumb-jump', then rg/ag, then
|
|
|
|
`evil-goto-definition' (if evil is active)."
|
2017-05-21 12:16:25 +02:00
|
|
|
(interactive "P")
|
|
|
|
(let ((sym (thing-at-point 'symbol t))
|
|
|
|
successful)
|
|
|
|
(cond ((null sym)
|
|
|
|
(user-error "Nothing under point"))
|
|
|
|
|
|
|
|
((ignore-errors (if other-window
|
|
|
|
(xref-find-definitions-other-window sym)
|
|
|
|
(xref-find-definitions sym))
|
2017-03-15 22:44:42 -04:00
|
|
|
t))
|
|
|
|
|
|
|
|
((and (fboundp 'dumb-jump-go)
|
2017-05-21 12:16:25 +02:00
|
|
|
;; dumb-jump doesn't tell us if it succeeded or not
|
|
|
|
(cl-letf (((symbol-function 'dumb-jump-result-follow)
|
|
|
|
`(lambda (result &optional use-tooltip proj)
|
|
|
|
(setq successful t)
|
|
|
|
(,(symbol-function 'dumb-jump-result-follow)
|
|
|
|
result use-tooltip proj))))
|
|
|
|
(if other-window
|
|
|
|
(dumb-jump-go-other-window)
|
|
|
|
(dumb-jump-go))
|
|
|
|
successful)))
|
2017-03-15 22:44:42 -04:00
|
|
|
|
2017-05-21 12:16:25 +02:00
|
|
|
((and sym
|
|
|
|
(featurep 'counsel)
|
|
|
|
(let ((regex (rxt-quote-pcre sym)))
|
|
|
|
(or (and +jump--rg-installed-p
|
|
|
|
(counsel-rg regex (doom-project-root)))
|
|
|
|
(and +jump--ag-installed-p
|
|
|
|
(counsel-ag regex (doom-project-root)))))))
|
2017-03-15 22:44:42 -04:00
|
|
|
|
2017-05-21 12:16:25 +02:00
|
|
|
((and (featurep 'evil)
|
|
|
|
evil-mode
|
2017-06-08 11:47:56 +02:00
|
|
|
(destructuring-bind (beg end) (bounds-of-thing-at-point 'symbol)
|
2017-05-21 12:16:25 +02:00
|
|
|
(evil-goto-definition)
|
|
|
|
(let ((pt (point)))
|
2017-06-08 11:47:56 +02:00
|
|
|
(not (and (>= pt beg)
|
|
|
|
(< pt end)))))))
|
2017-05-21 12:16:25 +02:00
|
|
|
|
|
|
|
(t (user-error "Couldn't find '%s'" sym)))))
|
2017-03-15 22:44:42 -04:00
|
|
|
|
|
|
|
;;;###autoload
|
2017-05-21 12:16:25 +02:00
|
|
|
(defun +jump/references ()
|
2017-05-21 15:06:15 +02:00
|
|
|
"Show a list of references to the symbol at point.
|
|
|
|
|
|
|
|
Tries `xref-find-references' and falls back to rg/ag."
|
2017-05-21 12:16:25 +02:00
|
|
|
(interactive)
|
2017-03-15 22:44:42 -04:00
|
|
|
(let ((sym (thing-at-point 'symbol t)))
|
2017-06-08 11:47:56 +02:00
|
|
|
(cond ((ignore-errors (xref-find-references sym)
|
|
|
|
t))
|
2017-03-15 22:44:42 -04:00
|
|
|
|
2017-05-21 12:16:25 +02:00
|
|
|
((and sym
|
|
|
|
(featurep 'counsel)
|
|
|
|
(let ((regex (rxt-quote-pcre sym)))
|
|
|
|
(or (and (executable-find "rg")
|
|
|
|
(counsel-rg regex (doom-project-root)))
|
|
|
|
(and (executable-find "ag")
|
|
|
|
(counsel-ag regex (doom-project-root)))))))
|
2017-03-15 22:44:42 -04:00
|
|
|
|
|
|
|
(t (error "Couldn't find '%s'" sym)))))
|
|
|
|
|
2017-05-21 15:08:20 +02:00
|
|
|
(defvar +jump--online-last nil)
|
2017-05-21 15:06:15 +02:00
|
|
|
|
2017-03-15 22:44:42 -04:00
|
|
|
;;;###autoload
|
2017-05-21 15:06:15 +02:00
|
|
|
(defun +jump/online (where search)
|
|
|
|
"Looks up SEARCH online, in you browser, as dictated by WHERE.
|
|
|
|
|
|
|
|
Interactively, you are prompted to choose a source from
|
|
|
|
`+jump-search-url-alist'."
|
2017-03-15 22:44:42 -04:00
|
|
|
(interactive
|
2017-05-21 15:08:20 +02:00
|
|
|
(list (or (and (not current-prefix-arg)
|
|
|
|
+jump--online-last)
|
|
|
|
(completing-read (format "Search on (%s): " (thing-at-point 'symbol t))
|
|
|
|
(mapcar #'car +jump-search-url-alist)
|
|
|
|
nil t))
|
|
|
|
(thing-at-point 'symbol t)))
|
2017-06-08 11:47:56 +02:00
|
|
|
(condition-case _ex
|
2017-05-21 15:08:20 +02:00
|
|
|
(let ((url (cdr (assoc where +jump-search-url-alist))))
|
|
|
|
(unless url
|
|
|
|
(error "'%s' is an invalid search engine" where))
|
|
|
|
(when (or (functionp url) (symbolp url))
|
|
|
|
(setq url (funcall url)))
|
|
|
|
(cl-assert (and (stringp url) (not (string-empty-p url))))
|
|
|
|
(when (string-empty-p search)
|
|
|
|
(user-error "The search query is empty"))
|
|
|
|
(setq +jump--online-last where)
|
|
|
|
(browse-url (format url (url-encode-url search))))
|
|
|
|
('error (setq +jump--online-last nil))))
|
2017-03-15 22:44:42 -04:00
|
|
|
|