diff options
author | 2020-09-07 10:39:19 -0400 | |
---|---|---|
committer | 2020-09-07 10:39:19 -0400 | |
commit | c97f531abfb3053317b10d605eabf3aaaabab413 (patch) | |
tree | c102e9904e128e6bbd3ff4e86449366b6abf9dd3 /modules/textadept/find.lua | |
parent | b1af2bb28476440eb10716e6b734b0d4e68bc57a (diff) | |
download | textadept-c97f531abfb3053317b10d605eabf3aaaabab413.tar.gz textadept-c97f531abfb3053317b10d605eabf3aaaabab413.zip |
Added `ui.find.active` and prevent word highlighting when searching.
Word auto-highlighting when searching is too distracting.
Diffstat (limited to 'modules/textadept/find.lua')
-rw-r--r-- | modules/textadept/find.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua index 520b977e..d5e34ca9 100644 --- a/modules/textadept/find.lua +++ b/modules/textadept/find.lua @@ -57,6 +57,8 @@ local M = ui.find -- @field in_files_label_text (string, Write-only) -- The text of the "In files" label. -- This is primarily used for localization. +-- @field active (boolean) +-- Whether or not the Find & Replace pane is active. -- @field highlight_all_matches (boolean) -- Whether or not to highlight all occurrences of found text in the current -- buffer. |