aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2008-11-22 20:41:49 +0000
committerJuri Linkov2008-11-22 20:41:49 +0000
commit607f5f88f94bc809e1a030df82aba4fb37f2097d (patch)
treec6a47838c622e0ee283ccfb67667154f6cf4b713
parent2cb5f8ed9d457d8358aa442dce8c9a017b8c3876 (diff)
downloademacs-607f5f88f94bc809e1a030df82aba4fb37f2097d.tar.gz
emacs-607f5f88f94bc809e1a030df82aba4fb37f2097d.zip
(Dired Navigation): Change normal file name search option
from `non-nil' to `t'. Add `dwim' option.
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/dired.texi8
2 files changed, 10 insertions, 3 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 9e2cf1871fe..82c8fc5a36a 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,5 +1,10 @@
12008-11-22 Juri Linkov <juri@jurta.org> 12008-11-22 Juri Linkov <juri@jurta.org>
2 2
3 * dired.texi (Dired Navigation): Change normal file name search option
4 from `non-nil' to `t'. Add `dwim' option.
5
62008-11-22 Juri Linkov <juri@jurta.org>
7
3 * custom.texi (Directory Variables): Rename ".dir-settings.el" to 8 * custom.texi (Directory Variables): Rename ".dir-settings.el" to
4 ".dir-locals.el". Rename `define-project-bindings' to 9 ".dir-locals.el". Rename `define-project-bindings' to
5 `dir-locals-set-class-variables'. Rename `set-directory-project' to 10 `dir-locals-set-class-variables'. Rename `set-directory-project' to
diff --git a/doc/emacs/dired.texi b/doc/emacs/dired.texi
index 82cf96f5e9a..e2518de6692 100644
--- a/doc/emacs/dired.texi
+++ b/doc/emacs/dired.texi
@@ -124,10 +124,12 @@ incremental search in the Dired buffer, looking for matches only
124amongst the file names and ignoring the rest of the text in the 124amongst the file names and ignoring the rest of the text in the
125buffer. @kbd{M-s f M-C-s} (@code{dired-isearch-filenames-regexp}) 125buffer. @kbd{M-s f M-C-s} (@code{dired-isearch-filenames-regexp})
126does the same, using a regular expression search. If you change the 126does the same, using a regular expression search. If you change the
127variable @var{dired-isearch-filenames} to non-@code{nil}, then the 127variable @var{dired-isearch-filenames} to @code{t}, then the
128usual search commands also limit themselves to the file names; for 128usual search commands also limit themselves to the file names; for
129instance, @kbd{C-s} behaves like @kbd{M-s f C-s}. @xref{Search}, for 129instance, @kbd{C-s} behaves like @kbd{M-s f C-s}. If the value is
130information about incremental search. 130@code{dwim}, then search commands match the file names only when point
131was on a file name initially. @xref{Search}, for information about
132incremental search.
131 133
132 Some additional navigation commands are available when the Dired 134 Some additional navigation commands are available when the Dired
133buffer includes several directories. @xref{Subdirectory Motion}. 135buffer includes several directories. @xref{Subdirectory Motion}.