diff options
author | 2010-10-25 21:23:49 -0400 | |
---|---|---|
committer | 2010-10-25 21:23:49 -0400 | |
commit | 4c4ca5b03f5c5d2cc8a2d5a98b2afef183f8201c (patch) | |
tree | 8d229934907554bb0b053976e4d00415489c0a88 /core | |
parent | 844e2c125d69298efe2c8b72a152c4c8f663759d (diff) | |
download | textadept-4c4ca5b03f5c5d2cc8a2d5a98b2afef183f8201c.tar.gz textadept-4c4ca5b03f5c5d2cc8a2d5a98b2afef183f8201c.zip |
Allow access to find_in_files() through the gui.find API.
Diffstat (limited to 'core')
-rw-r--r-- | core/.find.luadoc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/.find.luadoc b/core/.find.luadoc index 87cbf257..e47eafd9 100644 --- a/core/.find.luadoc +++ b/core/.find.luadoc @@ -77,4 +77,11 @@ function goto_file_in_list(next) end -- Begins an incremental find using the Lua command entry. -- Lua command functionality will be unavailable until the search is finished -- (pressing 'Escape' by default). -function incremental() end +function find_incremental() end + +--- +-- Performs a find in files with the given directory. +-- Use the gui.find fields to set the text to find and find options. +-- @param utf8_dir UTF-8 encoded directory name. If none is provided, the user +-- is prompted for one. +function find_in_files(utf8_dir) end |