aboutsummaryrefslogtreecommitdiff
path: root/core/.find.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2009-01-30 10:14:39 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2009-01-30 10:14:39 -0500
commit79ebec80245ef9e67c99bff09d224935c5cb9cea (patch)
tree3ad181cb988663416bad27f532eedc15beb7725f /core/.find.lua
parent0881a41eb49676daf56a6e403d453d42d7563ccc (diff)
downloadtextadept-79ebec80245ef9e67c99bff09d224935c5cb9cea.tar.gz
textadept-79ebec80245ef9e67c99bff09d224935c5cb9cea.zip
Updated LuaDoc.
Diffstat (limited to 'core/.find.lua')
-rw-r--r--core/.find.lua13
1 files changed, 12 insertions, 1 deletions
diff --git a/core/.find.lua b/core/.find.lua
index b2789287..7d016cae 100644
--- a/core/.find.lua
+++ b/core/.find.lua
@@ -28,7 +28,18 @@ module('textadept.find')
-- @name textadept.find
-- @field find_entry_text The text in the find entry.
-- @field replace_entry_text The text in the replace entry.
-find = { find_entry_text = nil, replace_entry_text = nil }
+-- @field match_case Flag indicating whether or not case-sensitive search is
+-- performed.
+-- @field whole_word Flag indicating whether or not only whole-word matches are
+-- allowed in searches.
+-- @field lua Flag indicating whether or not the text to find in a search is a
+-- Lua pattern.
+-- @field in_files Flag indicating whether or not to search for the text in a
+-- list of files.
+find = {
+ find_entry_text = nil, replace_entry_text = nil,
+ match_case = nil, whole_word = nil, lua = nil, in_files = nil
+}
--- Displays and focuses the find/replace dialog.
function focus() end