From 79ebec80245ef9e67c99bff09d224935c5cb9cea Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Fri, 30 Jan 2009 10:14:39 -0500 Subject: Updated LuaDoc. --- core/.find.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'core/.find.lua') 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 -- cgit v1.2.3