aboutsummaryrefslogtreecommitdiff
path: root/core/.find.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2007-08-09 03:45:47 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2007-08-09 03:45:47 -0400
commitb708fa97b490c351f237d22397b8b562d7fb9950 (patch)
tree24a9e569d3c82f61ce1c0e274c99f33438aa80a1 /core/.find.lua
parenta0ae12838a95c88be4ea1ca83af905a25563faff (diff)
downloadtextadept-b708fa97b490c351f237d22397b8b562d7fb9950.tar.gz
textadept-b708fa97b490c351f237d22397b8b562d7fb9950.zip
Added new LuaDoc, updated existing LuaDoc to be more consistent.
Diffstat (limited to 'core/.find.lua')
-rw-r--r--core/.find.lua19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/.find.lua b/core/.find.lua
new file mode 100644
index 00000000..ff0e8517
--- /dev/null
+++ b/core/.find.lua
@@ -0,0 +1,19 @@
+-- Copyright 2007 Mitchell mitchell<att>caladbolg.net. See LICENSE.
+-- This is a DUMMY FILE used for making LuaDoc for built-in functions in the
+-- global textadept.find table.
+
+---
+-- Textadept's integrated find/replace dialog.
+-- [Dummy file]
+module('textadept.find')
+
+---
+-- Textadept's find table.
+-- @class table
+-- @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 }
+
+--- Displays and focuses the find/replace dialog.
+function focus() end