aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/find.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 21:26:43 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 21:26:43 -0400
commit095980fbbc1f5f4956afdee2802b87ce45f245e7 (patch)
treef1c214a39b66bd939dde2f7deb26e449f7fe57c9 /modules/textadept/find.lua
parentdbef5c3fa8ca9f842f75a6db1f0aa0fb029a4be6 (diff)
downloadtextadept-095980fbbc1f5f4956afdee2802b87ce45f245e7.tar.gz
textadept-095980fbbc1f5f4956afdee2802b87ce45f245e7.zip
Removed the `SC_` prefix from constants in `_SCINTILLA.constants`.
Also removed more unused constants.
Diffstat (limited to 'modules/textadept/find.lua')
-rw-r--r--modules/textadept/find.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua
index 0e912367..b4be38b5 100644
--- a/modules/textadept/find.lua
+++ b/modules/textadept/find.lua
@@ -188,8 +188,8 @@ end
-- Begins an incremental search using the command entry if *text* is `nil`;
-- otherwise continues an incremental search by searching for the next or
-- previous instance of string *text* depending on boolean *next*.
--- If *anchor* is `true`, searches for *text* starting from the current position
--- instead of the position where incremental search began at.
+-- *anchor* indicates whether or not to search for *text* starting from the
+-- current position instead of the position where incremental search began at.
-- Only the `match_case` find option is recognized. Normal command entry
-- functionality is unavailable until the search is finished by pressing `Esc`
-- (`⎋` on Mac OSX | `Esc` in curses).