diff options
author | 2012-09-12 11:24:11 -0400 | |
---|---|---|
committer | 2012-09-12 11:24:11 -0400 | |
commit | 9dc8ce16a1efc6482db6f1d5456d42958e79a06c (patch) | |
tree | e26ff636143fc74f92a6a3359a73e93194da6bc3 /modules/textadept/command_entry.lua | |
parent | 4305f32ac153b7a45a1c001da2fcd412af905168 (diff) | |
download | textadept-9dc8ce16a1efc6482db6f1d5456d42958e79a06c.tar.gz textadept-9dc8ce16a1efc6482db6f1d5456d42958e79a06c.zip |
Documentation overhaul.
Rewrote most of the manual and Lua API to complement each other.
Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
Diffstat (limited to 'modules/textadept/command_entry.lua')
-rw-r--r-- | modules/textadept/command_entry.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/textadept/command_entry.lua b/modules/textadept/command_entry.lua index c00df5db..262444d6 100644 --- a/modules/textadept/command_entry.lua +++ b/modules/textadept/command_entry.lua @@ -3,7 +3,7 @@ --[[ This comment is for LuaDoc. --- --- Textadept's Command entry. +-- Textadept's Command Entry. -- @field entry_text (string) -- The text in the entry. module('gui.command_entry')]] @@ -98,7 +98,8 @@ local focus --- -- Shows the given list of completions for the current word prefix. --- On selection, the current word prefix is replaced with the completion. +-- On selection, the current word prefix is replaced with the completion. Word +-- prefix characters are alphanumerics and underscores. -- @param completions The table of completions to show. Non-string values are -- ignored. -- @class function |