diff options
Diffstat (limited to 'core/.find.luadoc')
-rw-r--r-- | core/.find.luadoc | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/core/.find.luadoc b/core/.find.luadoc index 038d3943..e1251c02 100644 --- a/core/.find.luadoc +++ b/core/.find.luadoc @@ -20,34 +20,6 @@ module('gui.find') -- * `in_files`: Flag indicating whether or not to search for the text in a list -- of files. -- --- ## Overview --- --- In addition to offering standard find and replace, Textadept allows you to --- find with [Lua patterns][lua_patterns] and replace with Lua captures and even --- Lua code! Lua captures (`%n`) are only available from a Lua pattern search, --- but embedded Lua code enclosed in `%()` is always available. --- --- [lua_patterns]: http://www.lua.org/manual/5.1/manual.html#5.4.1 --- --- If any block of text is selected for 'Replace All', only matches found in --- that block are replaced. --- --- Find in Files will prompt for a directory to recursively search and display --- the results in a new buffer. Double-clicking a search result will jump to it --- in the file. Replace in Files is not supported. You will have to Find in --- Files first, and then 'Replace All' for each file a result is found in. --- The 'Match Case', 'Whole Word', and 'Lua pattern' flags still apply. --- --- Incremental search uses the Command Entry. --- --- ## Customizing Look and Feel --- --- There is no way to theme the dialog from within Textadept. Instead you can --- use [GTK Resource files][gtkrc]. The find and replace entries have widget --- names of `textadept-find-entry` and `textadept-replace-entry` respectively. --- --- [gtkrc]: http://library.gnome.org/devel/gtk/unstable/gtk-Resource-Files.html. --- -- ## Events -- -- The following is a list of all find events generated in @@ -65,7 +37,8 @@ module('gui.find') -- - find\_text: the text to search for. -- - repl\_text: the text to replace found text with. ---- Displays and focuses the find/replace dialog. +--- +-- Displays and focuses the find/replace dialog. function focus() end --- |