aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGlenn Morris2014-02-12 00:27:27 -0800
committerGlenn Morris2014-02-12 00:27:27 -0800
commita8cb4247f9023dc1237854ee8f8727c82ec7d8a6 (patch)
treef9daf2bf25369bfadc1a4ca20225355399e0d65c /etc
parenta9a61c77b3effd0e00b20ff714e430ee6b2a937a (diff)
downloademacs-a8cb4247f9023dc1237854ee8f8727c82ec7d8a6.tar.gz
emacs-a8cb4247f9023dc1237854ee8f8727c82ec7d8a6.zip
Some icomplete doc
* doc/emacs/mini.texi (Completion Options): No longer mention icomplete, which has its own section now. * doc/emacs/modes.texi (Minor Modes): Update Icomplete xref. * lisp/icomplete.el: Commentary updates. (icomplete): Add info-link to defgroup. (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook) (icomplete-minibuffer-map, icomplete-mode) (icomplete-simple-completing-p, icomplete-completions): Doc fixes. * etc/NEWS: Related edits.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS24
1 files changed, 17 insertions, 7 deletions
diff --git a/etc/NEWS b/etc/NEWS
index d656b69f538..09385e56893 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -232,6 +232,7 @@ equivalent to setting `(eval-expression-)print-length' and
232`(eval-expression-)print-level' to nil. Additionally, it causes integers 232`(eval-expression-)print-level' to nil. Additionally, it causes integers
233to be printed in other formats (octal, hexadecimal, and character). 233to be printed in other formats (octal, hexadecimal, and character).
234 234
235---
235*** New hook `eval-expression-minibuffer-setup-hook' run by 236*** New hook `eval-expression-minibuffer-setup-hook' run by
236`eval-expression' on entering the minibuffer. 237`eval-expression' on entering the minibuffer.
237 238
@@ -554,17 +555,26 @@ module.
554--- 555---
555** New F90 mode option `f90-smart-end-names'. 556** New F90 mode option `f90-smart-end-names'.
556 557
557** Icomplete is a bit more like Ido. 558** Icomplete
558 559
559*** Key bindings to navigate through and select the completions. 560*** Icomplete by default now applies to all forms of minibuffer completion.
561The variable `icomplete-with-completion-tables' (now a user option)
562controls this. To restore the old behavior, set it back to
563'(internal-complete-buffer).
560 564
561*** The icomplete-separator is customizable, and its default has changed. 565*** You can navigate through and select completions using the keys
566from `icomplete-minibuffer-map'.
562 567
563*** Removed `icomplete-show-key-bindings'. 568---
569*** The string that separates potential completions is now a customizable
570option (`icomplete-separator'). The default is " | " rather than ",".
564 571
565*** Icomplete-mode by defaults applies to all forms of minibuffer completion. 572---
566(setq icomplete-with-completion-tables '(internal-complete-buffer)) 573*** New face `icomplete-first-match'; and new options
567will revert to the old behavior. 574`icomplete-hide-common-prefix' and `icomplete-show-matches-on-no-input'.
575
576---
577*** The option `icomplete-show-key-bindings' has been removed.
568 578
569** Ido 579** Ido
570 580