]> git.eshelyaron.com Git - emacs.git/commit
Infer identifier namespace in elisp xref backend
authorMattias Engdegård <mattiase@acm.org>
Tue, 7 Sep 2021 16:21:57 +0000 (18:21 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sun, 12 Sep 2021 11:00:59 +0000 (13:00 +0200)
commit4a44ac987e1357c8d4fdd18dd8cf902f5eec5401
tree4fe4926e1bb1abe68116ff40f72a73eaf149ee13
parent4793c980a1b8428ee21f0853b0e9cbf71c75bb89
Infer identifier namespace in elisp xref backend

Improve the accuracy of `xref-find-definitions` by inferring the
likely namespace of the sought identifier from its context.
This reduces the number of irrelevant search hits when it is clear
what kind of identifier is being looked for (such as showing a
variable when the user looks for a function).

Co-written with Dmitry Gutov.

* lisp/progmodes/elisp-mode.el (elisp--xref-list-index)
(elisp--xref-infer-namespace, xref-backend-identifier-at-point): New.
(xref-backend-definitions): Use the buffer position for inferring.
(elisp--xref-find-definitions): Use the inferred namespace.
(xref-backend-apropos): Adapt call.
* test/lisp/progmodes/elisp-mode-tests.el (elisp-mode-test--with-buffer)
(elisp-mode-with-buffer, elisp-mode-infer-namespace): New tests.
lisp/progmodes/elisp-mode.el
test/lisp/progmodes/elisp-mode-tests.el