diff options
author | 2020-08-27 20:35:41 -0400 | |
---|---|---|
committer | 2020-08-27 20:35:41 -0400 | |
commit | 4b78f9f512fb84018dc4cacf08557e83a38f18c6 (patch) | |
tree | 3651dc49a798a42ec6f190729c5f07fa06f9952e /doc | |
parent | 587cb750afd36a2bb797fa6bec1bdf66fe665e9c (diff) | |
download | textadept-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.md | 9 |
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. |