diff options
author | 2011-06-23 17:33:40 -0400 | |
---|---|---|
committer | 2011-06-23 17:33:40 -0400 | |
commit | c8e1267fb5b5f9215eade1d6a45dd5228b28548b (patch) | |
tree | f7df42426ca5631ac6f67e4156d0800c0ff0befb /core/.find.luadoc | |
parent | f4bc26099570801aef5a3f8d589ae0c8688bd448 (diff) | |
download | textadept-c8e1267fb5b5f9215eade1d6a45dd5228b28548b.tar.gz textadept-c8e1267fb5b5f9215eade1d6a45dd5228b28548b.zip |
Updated Luadoc and added extra fields to other modules.
Diffstat (limited to 'core/.find.luadoc')
-rw-r--r-- | core/.find.luadoc | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/core/.find.luadoc b/core/.find.luadoc index 77426400..3b68e7af 100644 --- a/core/.find.luadoc +++ b/core/.find.luadoc @@ -9,16 +9,12 @@ module('gui.find') -- Markdown: -- ## Fields -- --- * `find_entry_text`: The text in the find entry. --- * `replace_entry_text`: The text in the replace entry. --- * `match_case`: Flag indicating whether or not case-sensitive search is --- performed. --- * `whole_word`: Flag indicating whether or not only whole-word matches are --- allowed in searches. --- * `lua`: Flag indicating whether or not the text to find in a search is a Lua --- pattern. --- * `in_files`: Flag indicating whether or not to search for the text in a list --- of files. +-- * `find_entry_text` [string]: The text in the find entry. +-- * `replace_entry_text` [string]: The text in the replace entry. +-- * `match_case` [bool]: Searches are case-sensitive. +-- * `whole_word` [bool]: Only whole-word matches are allowed in searches. +-- * `lua` [bool]: The search text is interpreted as a Lua pattern. +-- * `in_files` [bool]: Search for the text in a list of files. -- -- ## Events -- |