diff options
| author | Juri Linkov | 2008-11-22 20:41:49 +0000 |
|---|---|---|
| committer | Juri Linkov | 2008-11-22 20:41:49 +0000 |
| commit | 607f5f88f94bc809e1a030df82aba4fb37f2097d (patch) | |
| tree | c6a47838c622e0ee283ccfb67667154f6cf4b713 | |
| parent | 2cb5f8ed9d457d8358aa442dce8c9a017b8c3876 (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/emacs/dired.texi | 8 |
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 @@ | |||
| 1 | 2008-11-22 Juri Linkov <juri@jurta.org> | 1 | 2008-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 | |||
| 6 | 2008-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 | |||
| 124 | amongst the file names and ignoring the rest of the text in the | 124 | amongst the file names and ignoring the rest of the text in the |
| 125 | buffer. @kbd{M-s f M-C-s} (@code{dired-isearch-filenames-regexp}) | 125 | buffer. @kbd{M-s f M-C-s} (@code{dired-isearch-filenames-regexp}) |
| 126 | does the same, using a regular expression search. If you change the | 126 | does the same, using a regular expression search. If you change the |
| 127 | variable @var{dired-isearch-filenames} to non-@code{nil}, then the | 127 | variable @var{dired-isearch-filenames} to @code{t}, then the |
| 128 | usual search commands also limit themselves to the file names; for | 128 | usual search commands also limit themselves to the file names; for |
| 129 | instance, @kbd{C-s} behaves like @kbd{M-s f C-s}. @xref{Search}, for | 129 | instance, @kbd{C-s} behaves like @kbd{M-s f C-s}. If the value is |
| 130 | information about incremental search. | 130 | @code{dwim}, then search commands match the file names only when point |
| 131 | was on a file name initially. @xref{Search}, for information about | ||
| 132 | incremental search. | ||
| 131 | 133 | ||
| 132 | Some additional navigation commands are available when the Dired | 134 | Some additional navigation commands are available when the Dired |
| 133 | buffer includes several directories. @xref{Subdirectory Motion}. | 135 | buffer includes several directories. @xref{Subdirectory Motion}. |