blob: 384ce4a6e2856edb1cda00cd082b0571cfebe5c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
-- Copyright 2007-2008 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')
-- Usage:
-- In additional to offering standard find and replace, Textadept allows you
-- to find with Lua patterns and replace with Lua captures and even Lua code!
-- Lua captures (%n) are available for a Lua pattern search and embedded Lua
-- code enclosed in %() is always available.
---
-- 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
|