aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/.command_entry.lua
blob: 4b9d3ef0e3c2c86965b440a84c0a1dc436842f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
-- Copyright 2007-2008 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