]> git.eshelyaron.com Git - emacs.git/commit
Complete shorthands to longhands for symbol-completing tables scratch/bug-50959-fix
authorJoão Távora <joaotavora@gmail.com>
Wed, 6 Oct 2021 10:30:29 +0000 (11:30 +0100)
committerJoão Távora <joaotavora@gmail.com>
Wed, 6 Oct 2021 10:42:48 +0000 (11:42 +0100)
commitf9f64c4b3287d7276c8edeacdecfa9c78194447b
tree1f4a4e75012288e48f2bb54fb274d3faff99c838
parentd3a832a61ab5766b6ec879cee9ab75bbbc62034a
Complete shorthands to longhands for symbol-completing tables

Shorthands aren't symbols, they're text forms that 'read' into
symbols.  As such, shorthands aren't candidates in these tables of
symbols.  But in some situations, if no other candidates match the
pattern, we can e.g. complete "x-foo" to "xavier-foo" if the shorthand

  (("x-" . "xavier-"))

is set up in the buffer of origin.

bug#50959

* lisp/help-fns.el (help--symbol-completion-table): Report
`symbol-help' category.

* lisp/minibuffer.el (completion-styles-alist): New 'shorthand'
style.
(completion-category-defaults): Link 'symbol-help' category with
'shorthand' style.
(minibuffer--original-buffer): New variable.
(completing-read-default): Setup minibuffer--original-buffer.
(completion-shorthand-try-completion)
(completion-shorthand-all-completions): New helpers.
lisp/help-fns.el
lisp/minibuffer.el