diff options
author | Juri Linkov <juri@linkov.net> | 2022-08-27 22:43:40 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2022-08-27 22:43:40 +0300 |
commit | 0ab49d46ddbe27970c62a56597de000bc1c3232c (patch) | |
tree | 460023d68311d8685bff8c426faea5f75eb5e3e0 /etc | |
parent | f427b985a1857523412a846fcaa9082c87c0bbd1 (diff) | |
download | emacs-0ab49d46ddbe27970c62a56597de000bc1c3232c.tar.gz |
Use a list of text properties to search in symlink filenames in Wdired
* lisp/dired-aux.el (dired-isearch-search-filenames):
Use text properties 'dired-filename' and 'dired-symlink-filename'.
* lisp/dired.el (dired-font-lock-keywords): Add text property
'dired-symlink-filename' on symlinks.
* lisp/isearch.el (isearch-search-fun-in-text-property):
Support a list of text properties (bug#57293).
Diffstat (limited to 'etc')
-rw-r--r-- | etc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2023,7 +2023,10 @@ the buffer will take you to that directory. *** Search and replace in Dired/Wdired supports more regexps. For example, the regexp ".*" will match only characters that are part of the file name. Also "^.*$" can be used to match at the beginning -of the file name and at the end of the file name. +of the file name and at the end of the file name. This is used only +when searching on file names. In Wdired this can be used when the new +user option 'wdired-search-replace-filenames' is non-nil (which is the +default). ** Bookmarks |