summaryrefslogtreecommitdiff
path: root/lisp/minibuffer.el
Commit message (Collapse)AuthorAgeFilesLines
...
* | Allow non-interactive uses of minibuffer-next-completionJuri Linkov2022-04-101-2/+2
| | | | | | | | | | * lisp/minibuffer.el (minibuffer-previous-completion) (minibuffer-next-completion): Use 1 for n by default.
* | Allow completion wrapping in minibuffer completion navigation commandsJuri Linkov2022-04-051-8/+6
| | | | | | | | | | * lisp/minibuffer.el (minibuffer-previous-completion) (minibuffer-next-completion): Don't set completion-wrap-movement.
* | New commands for navigating completions from the minibuffer.Juri Linkov2022-04-051-1/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/simple.el (minibuffer-local-shell-command-map): * lisp/minibuffer.el (minibuffer-local-completion-map): Bind "M-<up>" to minibuffer-choose-previous-completion, "M-<down>" to minibuffer-choose-next-completion, "M-S-<up>" to minibuffer-previous-completion, "M-S-<down>" to minibuffer-next-completion, "M-RET" to minibuffer-choose-completion. (with-minibuffer-completions-window): New macro. (minibuffer-previous-completion, minibuffer-next-completion) (minibuffer-choose-previous-completion) (minibuffer-choose-next-completion) (minibuffer-choose-completion): New commands. https://lists.gnu.org/archive/html/emacs-devel/2022-03/msg00335.html
* | Use base prefix and suffix instead of completion-base-position (bug#49931)Juri Linkov2022-04-051-9/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/minibuffer.el (minibuffer-completion-help): Set completion-base-affixes from base-prefix and base-suffix. In completion-list-insert-choice-function handle string values of start/end as prefix/suffix. * lisp/simple.el (completion-base-affixes) (completion-use-base-affixes): New variables. (choose-completion): Let-bind base-affixes to completion-base-affixes. Use base-affixes when completion-use-base-affixes is non-nil. (completion-setup-function): Sync values of base-affixes and completion-base-affixes.
* | Fix some details in completionsJimmy Aguilar Mena2022-04-051-1/+2
| | | | | | | | | | | | | | | | | | | | | | * lisp/minibuffer.el (completion--insert-one-column) : Remove the extra new-line at the end. * lisp/simple.el (next-completion) : Fix behavior when completion-wrap-movement and remove bobp and eobp. This removes the extra tab ad the end of the list before wrapping or going to the minibuffer and apparently also fixes bug#54374 (switch-to-completions) : Simplify condition code and remove comment not applicable anymore.
* | Small fixes for the new feature 'second-tab' of 'completion-auto-select'Juri Linkov2022-03-241-5/+5
| | | | | | | | * lisp/simple.el (completion-auto-select): Extend the docstring.
* | Add completion-auto-select second-tab value.Jimmy Aguilar Mena2022-03-241-11/+19
| | | | | | | | | | | | | | | | * lisp/minibuffer.el (completion--in-region-1) : Change if with cond and check if completion-auto-select. * lisp/simple.el (completion-auto-select) : Move before first use. (completion-setup-function) : Make a more precise check for when completion-auto-select is t.
* | Fix documentation of the new completion-related featuresEli Zaretskii2022-03-221-11/+14
| | | | | | | | | | | | | | | | * etc/NEWS: * lisp/minibuffer.el (completion-auto-help): * doc/lispref/text.texi (Special Properties): * doc/emacs/mini.texi (Completion Options): Fix wording of recently added documentation and customization options.
* | Small fixes for new completions featuresJuri Linkov2022-03-211-22/+21
| | | | | | | | | | | | | | * lisp/minibuffer.el (completions-header-format): Rename from completion-header-format. (completions-highlight, completions-highlight-face): Move up before first use.
* | Simplify unneeded condition.Jimmy Aguilar Mena2022-03-131-4/+3
| | | | | | | | | | | | * lisp/minibuffer.el (display-completion-list) : The function completion--insert-string already has a condition for when completions is nil.
* | Extend completion-auto-help 'always and 'visible.Jimmy Aguilar Mena2022-03-131-8/+7
| | | | | | | | Make them behave the same also with exact but not single completion.
* | Use the new cursor-face feature to highlight completions.Jimmy Aguilar Mena2022-03-131-41/+7
| | | | | | | | | | * lisp/minibuffer.el (completions-highlight-face) : New custom. (completions-highlight-mode) : Removed
* | Rename completion-header-string to completion-header-formatJimmy Aguilar Mena2022-03-131-6/+8
| | | | | | | | And use a propertized default value.
* | Make minibuffer-hide-completions interactive.Jimmy Aguilar Mena2022-03-131-0/+1
| | | | | | | | Mainly to find a binding for it.
* | Add completion-header-string.Jimmy Aguilar Mena2022-03-131-24/+11
| | | | | | | | | | | | * doc/emacs/mini.texi (completion-header-string): Remove completion-header-text-property-list and completion-lazy-count. (completion-header-string): Substitutes the removed variable.
* | Add two new options for completions.Jimmy Aguilar Mena2022-03-121-4/+26
| | | | | | | | | | | | | | * doc/emacs/mini.texi (completion-lazy-count): (completion-header-text-property-list) : New customs Updated NEWS and manual.
* | Fix new option completions-max-height and new values for completion-auto-helpJuri Linkov2022-03-101-4/+9
| | | | | | | | | | | | | | | | * doc/emacs/mini.texi (Completion Options): Fix pxref for "Buffer Display Action Alists". * lisp/minibuffer.el (completion-auto-help): Explain new values in docstring. (completions-max-height): Use choice to allow nil.
* | Add new mode completions-highlight-mode.Jimmy Aguilar Mena2022-03-101-0/+46
| |
* | completions-max-height new custom variable.Jimmy Aguilar Mena2022-03-101-3/+14
| |
* | completion-auto-help new values.Jimmy Aguilar Mena2022-03-101-11/+18
| | | | | | | | Added also entries to news and manual
* | minibuffer.el: Try and fix bug#53053Stefan Monnier2022-02-071-19/+23
| | | | | | | | | | * lisp/minibuffer.el (completion--sifn-requote): Special case for when `upos` is at the very end.
* | Improve the read-file-name doc string slightlyLars Ingebrigtsen2022-01-281-1/+4
| | | | | | | | | | * lisp/minibuffer.el (read-file-name): Note that the semantics of INITIAL are odd (bug#37883).
* | * lisp/minibuffer.el (completions-sort): Fix type.Glenn Morris2022-01-241-1/+1
| | | | | | | | Flagged by test-custom-opts.
* | Make Completions sorting a user optionProtesilaos Stavrou2022-01-241-1/+16
| | | | | | | | | | | | | | * etc/NEWS: Document the new user option. * lisp/minibuffer.el (completions-sort): Add new user option. (minibuffer-completion-help): Implement it for the Completions buffer. (Bug#53362)
* | Improve the completion-category-overrides doc stringLars Ingebrigtsen2022-01-211-2/+6
| | | | | | | | | | | | * lisp/minibuffer.el (completion-category-overrides): Clarify what this variable does (bug#22324). (completion-category-defaults): Mention the overrides variable.
* | completion--nth-completion: Throw meaningful errorDaniel Mendler2022-01-041-4/+5
| | | | | | | | | | | | | | | | | | If a configured completion style does not exist, throw a meaningful error. Also make completion-styles-alist a defvar, since completion styles like orderless extend it. * lisp/minibuffer.el (completion-styles-alist): Make it a defvar. (completion--nth-completion): Give a more meaningful error.
* | Merge from origin/emacs-28Eli Zaretskii2022-01-011-1/+1
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 836be7a112 ; * etc/refcards/ru-refcard.tex: Update Copyright year. 86cbc6ee4a * lisp/net/tramp-sh.el: Adapt copyright year ebe8772f65 ; Minor fixes related to copyright years 23c1ee6989 ; * test/manual/etags/ETAGS.good_N: Adjust to copyright ye... 8d3fc7ec89 * src/xfaces.c (face_for_font): Make 'hash' be uintptr_t. 19dcb237b5 ; Add 2022 to copyright years. # Conflicts: # etc/NEWS # etc/refcards/ru-refcard.tex # lib/cdefs.h # lisp/erc/erc-dcc.el # lisp/erc/erc-imenu.el # lisp/erc/erc-replace.el # lisp/image-dired.el # lisp/progmodes/xref.el # m4/alloca.m4 # m4/byteswap.m4 # m4/errno_h.m4 # m4/getopt.m4 # m4/gnulib-common.m4 # m4/inttypes.m4 # m4/stddef_h.m4 # m4/stdint.m4 # m4/sys_socket_h.m4
| * ; Add 2022 to copyright years.Eli Zaretskii2022-01-011-1/+1
| |
* | Use defvar-keymap in minibuffer.elStefan Kangas2021-12-221-62/+51
| | | | | | | | | | | | | | | | | | * lisp/minibuffer.el (completion-in-region-mode-map) (minibuffer-local-completion-map) (minibuffer-local-must-match-map) (minibuffer-local-filename-completion-map) (minibuffer-local-ns-map, minibuffer-inactive-mode-map): Use defvar-keymap.
* | Allow for next-completion to wrap around the completion bufferPhilip Kaludercic2021-12-211-5/+10
| | | | | | | | | | | | | | | | | | | | | | * lisp/simple.el (completion-wrap-movement): Add new option. (previous-completion): Update docstring. (next-completion): Respect completion-wrap-movement. (switch-to-completions): Handle backwards completion by jumping to the end of the buffer. * lisp/minibuffer.el: (minibuffer-local-completion-map): Bind minibuffer-complete to backtab (completion--in-region-1): Handle backtab to scroll backwards
* | Merge remote-tracking branch 'origin/emacs-28' into trunkStefan Monnier2021-12-061-2/+3
|\|
| * lisp/minibuffer.el: Fix for bug#52169 regressionStefan Monnier2021-12-061-2/+3
| | | | | | | | | | * lisp/minibuffer.el (completion-table-subvert): Make sure we return a boundary that's not outside of the limit of the string.
* | * lisp/minibuffer.el: Don't return a boundary outside its argStefan Monnier2021-12-041-1/+1
| | | | | | | | | | * lisp/minibuffer.el (completion-table-subvert): Fix out of string start boundary for the odd case where `string` is shorter than `s1`.
* | Use substitute-command-keys for literal key sequencesStefan Kangas2021-11-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/abbrev.el (expand-region-abbrevs): * lisp/calc/calc-graph.el (calc-graph-show-dumb): * lisp/calc/calc-help.el (calc-help-for-help): * lisp/calc/calc-mode.el (calc-auto-why): * lisp/calc/calc.el (calc-do): * lisp/calculator.el (calculator-mode): * lisp/dired-aux.el (dired-create-files) (dired-do-create-files-regexp, dired-create-files-non-directory): * lisp/dired-x.el (dired-virtual): * lisp/dired.el (dired-mark-region, dired-unmark-all-files): * lisp/emacs-lisp/map-ynp.el (map-y-or-n-p): * lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode): * lisp/epa-ks.el (epa-ks--display-keys): * lisp/erc/erc.el (erc-toggle-debug-irc-protocol): * lisp/files.el (save-some-buffers): * lisp/gnus/gnus-dired.el (gnus-dired-find-file-mailcap) (gnus-dired-print): * lisp/gnus/gnus-group.el (gnus-keep-same-level): * lisp/gnus/gnus-score.el (gnus-score-find-trace): * lisp/gnus/gnus.el (to-list): * lisp/gnus/message.el (message--send-mail-maybe-partially): * lisp/mail/supercite.el (sc-set-variable): * lisp/minibuffer.el (minibuffer-inactive-mode): * lisp/progmodes/etags.el (select-tags-table): * lisp/progmodes/idlw-shell.el (idlwave-shell-mode) (idlwave-shell-char-mode-loop): * lisp/replace.el (query-replace-help): * lisp/simple.el (set-variable): * lisp/subr.el (read-char-from-minibuffer): * lisp/textmodes/ispell.el (ispell-help, ispell-message): * lisp/textmodes/reftex-global.el (reftex-find-duplicate-labels): * lisp/textmodes/reftex-vars.el (reftex-toc-include-file-boundaries) (reftex-toc-include-labels, reftex-toc-include-index-entries) (reftex-toc-include-context, reftex-toc-follow-mode) (reftex-index-include-context, reftex-index-follow-mode) (reftex-enable-partial-scans) (reftex-auto-update-selection-buffers) (reftex-highlight-selection): * lisp/time.el (display-time-update): * lisp/vc/ediff-help.el (ediff-help-for-quick-help): * lisp/vc/ediff-init.el (ediff-keep-variants): * lisp/vc/ediff-ptch.el (ediff-fixup-patch-map) (ediff-patch-file-internal): * lisp/windmove.el (windmove-delete-default-keybindings): Use 'substitute-command-keys' for literal key sequences. * lisp/userlock.el (userlock--fontify-key): Remove function. (ask-user-about-lock, ask-user-about-lock-help) (ask-user-about-supersession-threat) (ask-user-about-supersession-help): Use 'substitute-command-keys' for literal key sequences. * lisp/ibuffer.el (ibuffer-unmark-all): Use 'substitute-command-keys' for command.
* | Re-rename the minibuffer headingLars Ingebrigtsen2021-11-061-1/+1
| | | | | | | | | | * lisp/minibuffer.el: There's more here than completion functions (bug#49844).
* | Correct minibuffer.el headingLars Ingebrigtsen2021-11-061-1/+1
|/ | | | | * lisp/minibuffer.el: There's more here than completion functions (bug#49844).
* Fix typos in the manual and in a commentJan Synacek2021-10-281-6/+7
| | | | | | | | * lisp/minibuffer.el (completion-pcm--hilit-commonality): * doc/lispintro/emacs-lisp-intro.texi (Mode Line): Fix typos (bug#51434). Copyright-paperwork-exempt: yes
* Revert commit 225ca617b7, and apply another fixMichael Albinus2021-10-231-1/+0
| | | | | | | | * lisp/minibuffer.el (read-file-name-default): Revert commit 225ca617b7. (Bug#50976). * lisp/shell.el (shell): Remove volume letter for remote shell file name. (Bug#49229)
* ; Pacify recent shorthand unused lexarg warnings.Basil L. Contovounesios2021-10-111-1/+1
|
* Complete shorthands to longhands for symbol-completing tablesJoão Távora2021-10-101-3/+48
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Don't quote nil and t in doc strings and commentsLars Ingebrigtsen2021-09-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * test/src/minibuf-tests.el (test-try-completion-ignore-case): * test/lisp/url/url-auth-tests.el (url-auth-test-digest-auth-retrieve-cache): * test/lisp/subr-tests.el (subr-tests-add-hook-depth): * test/lisp/so-long-tests/so-long-tests.el (so-long-tests-invisible-buffer-function): * test/lisp/emacs-lisp/tabulated-list-test.el (tabulated-list-sort): * src/xfaces.c: * src/process.c (Finterrupt_process): (syms_of_process): * src/minibuf.c (Fread_from_minibuffer): (Fcompleting_read): (syms_of_minibuf): * src/dispnew.c (syms_of_display): * src/data.c: * lisp/so-long.el (so-long--hack-local-variables): * lisp/progmodes/elisp-mode.el (elisp--xref-find-definitions): (elisp--xref-find-definitions): * lisp/org/ox-html.el (org-html-htmlize-output-type): * lisp/org/org-agenda.el (org-agenda-do-in-region): * lisp/net/tramp.el: * lisp/minibuffer.el (set-minibuffer-message): * lisp/isearch.el (isearch-wrap-pause): (isearch-repeat-on-direction-change): * lisp/emacs-lisp/timer.el (timer): * lisp/emacs-lisp/package.el (package-read-archive-contents): * lisp/emacs-lisp/faceup.el (faceup-next-property-change): * lisp/emacs-lisp/comp.el (comp-func): * lisp/emacs-lisp/comp-cstr.el (comp-cstr-empty-p): * lisp/emacs-lisp/cl-macs.el (cl-do): (cl-do*): (cl--self-tco): * lisp/emacs-lisp/bytecomp.el (byte-compile-unresolved-functions): (byte-compile-cond-jump-table): Don't quote t and nil.
* Document completions-detailedLars Ingebrigtsen2021-09-211-2/+3
| | | | | | * doc/emacs/help.texi (Name Help): Document completions-detailed. * lisp/minibuffer.el (completions-detailed): Give an example in the doc string.
* Refactor minibuffer abortingMiha Rihtaršič2021-09-201-8/+12
| | | | | | | | | | | * lisp/minibuffer.el (minibuffer-quit-recursive-edit): New optional argument to specify how many levels of recursion to quit. * src/eval.c (internal_catch): Remove special handling of 'exit tag (bug#49700). * src/minibuf.c (Fabort_minibuffers): Use minibuffer-quit-recursive-edit to quit multiple levels of minibuffer recursion.
* completions-annotations doc string clarificationLars Ingebrigtsen2021-09-131-1/+3
| | | | | * lisp/minibuffer.el (completions-annotations): Mention that it's not always used.
* Fix read-no-blanks-input doc string typoLars Ingebrigtsen2021-09-121-1/+1
| | | | * lisp/minibuffer.el (read-no-blanks-input): Fix doc string typo.
* Fix read-no-blanks-input history argumentdick r. chiang2021-09-121-1/+1
| | | | | * lisp/minibuffer.el (read-no-blanks-input): Use the `minibuffer-history' symbol, not the value (bug#50535).
* Speed up pcm completion styles for patternless special caseJoão Távora2021-08-251-2/+4
| | | | | | | Fixes: bug#48841 * lisp/minibuffer.el (completion-flex-all-completions): Skip completion-pcm--hilit-commonality if there's no pattern yet.
* Don't mess up grouping in completion-all-sorted-completionsJoão Távora2021-08-221-6/+15
| | | | | | | | | | | | | | | | | | | | | The default sorting order will mess up the naturally grouped order of the candidates in the table that specified the group-function. As seen in xref.el when (setq xref-show-definitions-function 'xref-show-definitions-completing-read) (setq completions-group t) M-x fido-mode Also partially seen with C-x 8 RET (M-x insert-char) with (setq read-char-by-name-sort 'code) bug#48545 * lisp/minibuffer.el (completion-all-sorted-completions): Don't use default sort if there's a group-function in the table.
* Improve fix of bug#49888 on no-pattern flex sortingJoão Távora2021-08-191-41/+28
| | | | | | | | | This version is functionally equivalent, but doesn't duplicate any code. When nothing "flexy" is happening, it works by simply not doing any metadata adjustments, instead of attempting to synthesize a function to mimic the non-flex case. * lisp/minibuffer.el (completion--flex-adjust-metadata): Simplify.
* Sort by recency in flex completion style when no flexy stuff happeningJoão Távora2021-08-151-21/+33
| | | | | | | | Fixes: bug#49888 * minibuffer.el (completion--flex-adjust-metadata): Fall back to usual alphanumeric, length, recency strategy if no minibuffer input. There is still a bug indicated by the nearby FIXMEs, though.