aboutsummaryrefslogtreecommitdiff
path: root/core/ext/command_entry.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2009-05-01 14:01:55 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2009-05-01 14:01:55 -0400
commita2c3a30f3392b39493aaa2a32bd455e490ea4283 (patch)
tree8d3abcaee2c9356c6341300b06def48bdd8a82d1 /core/ext/command_entry.lua
parent41756d25bfb19475b0656ca778911f0782946e54 (diff)
downloadtextadept-a2c3a30f3392b39493aaa2a32bd455e490ea4283.tar.gz
textadept-a2c3a30f3392b39493aaa2a32bd455e490ea4283.zip
Eliminated redundant LuaDoc.
Diffstat (limited to 'core/ext/command_entry.lua')
-rw-r--r--core/ext/command_entry.lua6
1 files changed, 1 insertions, 5 deletions
diff --git a/core/ext/command_entry.lua b/core/ext/command_entry.lua
index 890c99e9..d2a64243 100644
--- a/core/ext/command_entry.lua
+++ b/core/ext/command_entry.lua
@@ -4,11 +4,7 @@ local textadept = _G.textadept
local locale = _G.locale
local ce = textadept.command_entry
----
--- 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
+-- LuaDoc is in core/.command_entry.lua
function ce.get_completions_for(command)
local substring = command:match('[%w_.:]+$') or ''
local path, o, prefix = substring:match('^([%w_.:]-)([.:]?)([%w_]*)$')