aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2020-08-27 20:35:41 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2020-08-27 20:35:41 -0400
commit4b78f9f512fb84018dc4cacf08557e83a38f18c6 (patch)
tree3651dc49a798a42ec6f190729c5f07fa06f9952e /doc
parent587cb750afd36a2bb797fa6bec1bdf66fe665e9c (diff)
downloadtextadept-4b78f9f512fb84018dc4cacf08557e83a38f18c6.tar.gz
textadept-4b78f9f512fb84018dc4cacf08557e83a38f18c6.zip
Disable `ui.find.highlight_all_matches` by default.
It can be difficult to see what the current result is.
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/manual.md b/doc/manual.md
index c1a3d0dd..0c1ec03c 100644
--- a/doc/manual.md
+++ b/doc/manual.md
@@ -517,12 +517,11 @@ You can summon the find & replace pane via `Ctrl+F` on Windows, Linux and BSD,
find and replace functionality you would expect, along with "Match Case",
"Whole Word", "[Regex](#Regex.and.Lua.Pattern.Syntax)", and "In Files" options.
The pane also stores find and replace history, up to 10 entries for each. As you
-search, Textadept automatically highlights all instances of found text in the
-current buffer. You can turn this off by setting
-[`ui.find.highlight_all_matches`][]. For example, in your
-*~/.textadept/init.lua*:
+search, Textadept can automatically highlight all instances of found text in the
+current buffer by setting [`ui.find.highlight_all_matches`][]. For example, in
+your *~/.textadept/init.lua*:
- ui.find.highlight_all_matches = false
+ ui.find.highlight_all_matches = true
**Note:** Textadept does not support multi-line regex searches.