aboutsummaryrefslogtreecommitdiff
path: root/core/.find.luadoc
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-11-30 19:55:39 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2010-11-30 19:55:39 -0500
commitc7b543e79b41d9a983cc89e264acd0472d09dc92 (patch)
tree9b28b836f65b396ea160ba91048fb030018ccdcc /core/.find.luadoc
parent6c1afd75fc048e65cef5bfdbe68c79a082bdad43 (diff)
downloadtextadept-c7b543e79b41d9a983cc89e264acd0472d09dc92.tar.gz
textadept-c7b543e79b41d9a983cc89e264acd0472d09dc92.zip
New manual.
Diffstat (limited to 'core/.find.luadoc')
-rw-r--r--core/.find.luadoc31
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
---