aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJuri Linkov2013-05-31 02:45:41 +0300
committerJuri Linkov2013-05-31 02:45:41 +0300
commit01dea85f7b9a064ceafefd6e2940566da0530fb4 (patch)
treea9bd0366eea57f55efa6584b521e258144d0db59 /etc
parent8accd027c4ac0c73c8783eb2ae1bedeeee09d3da (diff)
downloademacs-01dea85f7b9a064ceafefd6e2940566da0530fb4.tar.gz
emacs-01dea85f7b9a064ceafefd6e2940566da0530fb4.zip
* lisp/isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible' to "\M-si".
(isearch-invisible): New variable. (isearch-forward): Doc fix. (isearch-mode): Set `isearch-invisible' to the value of `search-invisible'. (isearch-toggle-case-fold): Doc fix. (isearch-toggle-invisible): New command. (isearch-query-replace): Let-bind `search-invisible' to the value of `isearch-invisible'. (isearch-search): Use `isearch-invisible' instead of `search-invisible'. Let-bind `search-invisible' to the value of `isearch-invisible'. Fixes: debbugs:11378
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 80546ce985a..9e303f354fe 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -241,6 +241,9 @@ entries displayed by `Info-index-next', `Info-virtual-index' and
241*** `C-x 8 RET' in Isearch mode reads a character by its Unicode name 241*** `C-x 8 RET' in Isearch mode reads a character by its Unicode name
242and adds it to the search string. 242and adds it to the search string.
243 243
244*** `M-s i' toggles the variable `isearch-invisible' between nil and
245the value of the option `search-invisible' (or `open' when it's nil).
246
244*** `query-replace' skips invisible text when `search-invisible' is nil, 247*** `query-replace' skips invisible text when `search-invisible' is nil,
245and opens overlays with hidden text when `search-invisible' is `open'. 248and opens overlays with hidden text when `search-invisible' is `open'.
246 249