diff options
| author | Paul Eggert | 2020-06-01 22:26:32 -0700 |
|---|---|---|
| committer | Paul Eggert | 2020-06-01 22:26:32 -0700 |
| commit | e10bd9e249bf70d0165a0cc050656ad94f34197d (patch) | |
| tree | 7eb22d41a6e7aeb8757e883479bdc0f2b8ec1d45 /doc | |
| parent | 2c1e5b9e77d5da26cfb01917c25546e776c67789 (diff) | |
| parent | 44c0e074f7cb84481785cb49515a4bd7235a074b (diff) | |
| download | emacs-e10bd9e249bf70d0165a0cc050656ad94f34197d.tar.gz emacs-e10bd9e249bf70d0165a0cc050656ad94f34197d.zip | |
Merge from origin/emacs-27
44c0e074f7 * doc/emacs/buffers.texi (Icomplete): Mention icomplete-mi...
68b6dad1d8 Be more aggressive in marking objects during GC
36f508f589 ; * src/xdisp.c (find_last_unchanged_at_beg_row): Fix a typo.
cc340da1fe Fix bug #41618 "(byte-compile 'foo) errors when foo is a m...
41232e6797 Avoid crashes due to bidi cache being reset during redisplay
f72bb4ce36 * lisp/tab-bar.el (switch-to-buffer-other-tab): Normalize ...
d3e0023aaa ; * etc/TODO: Fix formatting. (Bug#41497)
a8ad94cd2f Fix mingw.org's MinGW GCC 9 warning about 'execve'
# Conflicts:
# lisp/tab-bar.el
# nt/inc/ms-w32.h
# src/alloc.c
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/buffers.texi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/emacs/buffers.texi b/doc/emacs/buffers.texi index 6a53942d689..89ed470c055 100644 --- a/doc/emacs/buffers.texi +++ b/doc/emacs/buffers.texi | |||
| @@ -741,7 +741,14 @@ Ido''). Among other things, in Fido mode, @kbd{C-s} and @kbd{C-r} are | |||
| 741 | also used to rotate the completions list, @kbd{C-k} can be used to | 741 | also used to rotate the completions list, @kbd{C-k} can be used to |
| 742 | delete files and kill buffers in-list. Another noteworthy aspect is | 742 | delete files and kill buffers in-list. Another noteworthy aspect is |
| 743 | that @code{flex} is used as the default completion style | 743 | that @code{flex} is used as the default completion style |
| 744 | (@pxref{Completion Styles}). | 744 | (@pxref{Completion Styles}). To change this, add the following to |
| 745 | your initialization file (@pxref{Init File}): | ||
| 746 | |||
| 747 | @example | ||
| 748 | (defun my-icomplete-styles () | ||
| 749 | (setq-local completion-styles '(initials flex))) | ||
| 750 | (add-hook 'icomplete-minibuffer-setup-hook 'my-icomplete-styles) | ||
| 751 | @end example | ||
| 745 | 752 | ||
| 746 | To enable Fido mode, type @kbd{M-x fido-mode}, or customize | 753 | To enable Fido mode, type @kbd{M-x fido-mode}, or customize |
| 747 | the variable @code{fido-mode} to @code{t} (@pxref{Easy | 754 | the variable @code{fido-mode} to @code{t} (@pxref{Easy |