[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r115292: * doc/emacs/buffers.texi (Icomplete): Renam
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] trunk r115292: * doc/emacs/buffers.texi (Icomplete): Rename from Iswitchb and |
Date: |
Fri, 29 Nov 2013 18:54:18 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 115292
revision-id: address@hidden
parent: address@hidden
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2013-11-29 13:54:14 -0500
message:
* doc/emacs/buffers.texi (Icomplete): Rename from Iswitchb and
rewrite accordingly.
modified:
doc/emacs/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-6227
doc/emacs/buffers.texi
buffers.texi-20091113204419-o5vbwnq5f7feedwu-6234
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog 2013-11-23 01:55:16 +0000
+++ b/doc/emacs/ChangeLog 2013-11-29 18:54:14 +0000
@@ -1,3 +1,8 @@
+2013-11-29 Stefan Monnier <address@hidden>
+
+ * buffers.texi (Icomplete): Rename from Iswitchb and
+ rewrite accordingly.
+
2013-11-23 Glenn Morris <address@hidden>
* cmdargs.texi (General Variables):
=== modified file 'doc/emacs/buffers.texi'
--- a/doc/emacs/buffers.texi 2013-01-01 09:11:05 +0000
+++ b/doc/emacs/buffers.texi 2013-11-29 18:54:14 +0000
@@ -598,7 +598,7 @@
@menu
* Uniquify:: Making buffer names unique with directory parts.
-* Iswitchb:: Switching between buffers with substrings.
+* Icomplete:: Fast minibuffer selection.
* Buffer Menus:: Configurable buffer menu.
@end menu
@@ -641,39 +641,31 @@
know the rule, you won't have to look. And then you may find that one
rule or another is easier for you to remember and apply quickly.
address@hidden Iswitchb
address@hidden Switching Between Buffers using Substrings
-
address@hidden iswitchb-mode
address@hidden Iswitchb mode
address@hidden mode, Iswitchb
address@hidden C-x b @r{(Iswitchb mode)}
address@hidden C-x 4 b @r{(Iswitchb mode)}
address@hidden C-x 5 b @r{(Iswitchb mode)}
address@hidden C-x 4 C-o @r{(Iswitchb mode)}
-
- Iswitchb global minor mode provides convenient switching between
-buffers using substrings of their names. It replaces the normal
-definitions of @kbd{C-x b}, @kbd{C-x 4 b}, @kbd{C-x 5 b}, and @kbd{C-x
-4 C-o} with alternative commands that are somewhat ``smarter''.
-
- When one of these commands prompts you for a buffer name, you can
-type in just a substring of the name you want to choose. As you enter
-the substring, Iswitchb mode continuously displays a list of buffers
-that match the substring you have typed.
-
- At any time, you can type @key{RET} to select the first buffer in
-the list. So the way to select a particular buffer is to make it the
address@hidden Icomplete
address@hidden Fast minibuffer selection
+
address@hidden icomplete-mode
address@hidden Icomplete mode
+
+ Icomplete global minor mode provides a convenient way to quickly select an
+element among the possible completions in a minibuffer. When enabled, typing
+in the minibuffer continuously displays a list of possible completions that
+match the string you have typed.
+
+ At any time, you can type @key{C-j} to select the first completion in
+the list. So the way to select a particular completion is to make it the
first in the list. There are two ways to do this. You can type more
-of the buffer name and thus narrow down the list, excluding unwanted
-buffers above the desired one. Alternatively, you can use @kbd{C-s}
-and @kbd{C-r} to rotate the list until the desired buffer is first.
-
- @key{TAB} while entering the buffer name performs completion on the
-string you have entered, based on the displayed list of buffers.
-
- To enable Iswitchb mode, type @kbd{M-x iswitchb-mode}, or customize
-the variable @code{iswitchb-mode} to @code{t} (@pxref{Easy
+of the completion name and thus narrow down the list, excluding unwanted
+completions above the desired one. Alternatively, you can use @kbd{C-.}
+and @kbd{C-,} to rotate the list until the desired buffer is first.
+
+ @key{M-TAB} will select the first completion in the list, like @key{C-j} but
+without exiting the minibuffer, so you can edit it further. This is typically
+used when entering a file name, where @key{M-TAB} can be used a few times to
+descend in the hierarchy of directories.
+
+ To enable Icomplete mode, type @kbd{M-x icomplete-mode}, or customize
+the variable @code{icomplete-mode} to @code{t} (@pxref{Easy
Customization}).
@node Buffer Menus
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r115292: * doc/emacs/buffers.texi (Icomplete): Rename from Iswitchb and,
Stefan Monnier <=