diff options
author | 2008-06-17 16:43:09 -0400 | |
---|---|---|
committer | 2008-06-17 16:43:09 -0400 | |
commit | 102c01ba2db51190c7c79592a6ea2fdb29d4d4fa (patch) | |
tree | 781576920293b05c7585e410f8dc9d3f2e48a44f /core/.command_entry.lua | |
parent | e47fe640c0cd6826fa2b46d3b3fad7268766a093 (diff) | |
download | textadept-102c01ba2db51190c7c79592a6ea2fdb29d4d4fa.tar.gz textadept-102c01ba2db51190c7c79592a6ea2fdb29d4d4fa.zip |
Added Tab-completion to Lua Command Entry.
Diffstat (limited to 'core/.command_entry.lua')
-rw-r--r-- | core/.command_entry.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/core/.command_entry.lua b/core/.command_entry.lua new file mode 100644 index 00000000..6de23763 --- /dev/null +++ b/core/.command_entry.lua @@ -0,0 +1,25 @@ +-- Copyright 2007 Mitchell mitchell<att>caladbolg.net. See LICENSE. +-- This is a DUMMY FILE used for making LuaDoc for built-in functions in the +-- global textadept.command_entry table. + +--- +-- Textadept's Lua command entry. +-- [Dummy file] +module('textadept.command_entry') + +--- +-- Textadept's Lua command entry table. +-- @class table +-- @name textadept.command_entry +-- @field entry_text The text in the entry. +command_entry = {} + +--- Focuses the command entry. +function focus() end + +--- +-- Gets completions for the current command_entry text. +-- This function is called internally and shouldn't be called by script. +-- @param command The command to complete. +-- @return sorted table of completions +function get_completions_for(command) end |