2011-09-07 20:16:56 +02:00
|
|
|
#include "command_manager.hh"
|
|
|
|
|
2011-09-16 11:18:51 +02:00
|
|
|
#include "assert.hh"
|
2012-02-13 22:38:07 +01:00
|
|
|
#include "context.hh"
|
2012-08-11 12:13:48 +02:00
|
|
|
#include "register_manager.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "shell_manager.hh"
|
|
|
|
#include "utils.hh"
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2012-06-02 17:49:35 +02:00
|
|
|
bool CommandManager::command_defined(const String& command_name) const
|
|
|
|
{
|
2013-12-24 03:06:22 +01:00
|
|
|
return find_command(command_name) != m_commands.end();
|
2012-06-02 17:49:35 +02:00
|
|
|
}
|
|
|
|
|
2012-11-22 14:28:14 +01:00
|
|
|
void CommandManager::register_command(String command_name,
|
2012-06-02 17:49:35 +02:00
|
|
|
Command command,
|
2013-11-12 20:38:19 +01:00
|
|
|
CommandFlags flags,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2013-11-12 20:38:19 +01:00
|
|
|
m_commands[command_name] = { std::move(command), flags, std::move(completer) };
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void CommandManager::register_commands(memoryview<String> command_names,
|
2012-06-02 17:49:35 +02:00
|
|
|
Command command,
|
2013-11-12 20:38:19 +01:00
|
|
|
CommandFlags flags,
|
2012-11-22 14:28:14 +01:00
|
|
|
CommandCompleter completer)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2013-12-24 03:06:22 +01:00
|
|
|
kak_assert(not command_names.empty());
|
|
|
|
m_commands[command_names[0]] = { std::move(command), flags, completer };
|
|
|
|
for (size_t i = 1; i < command_names.size(); ++i)
|
|
|
|
m_aliases[command_names[i]] = command_names[0];
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2013-07-28 16:40:02 +02:00
|
|
|
struct parse_error : runtime_error
|
|
|
|
{
|
|
|
|
parse_error(const String& error)
|
|
|
|
: runtime_error{"parse error: " + error} {}
|
|
|
|
};
|
2012-11-21 13:56:52 +01:00
|
|
|
|
2012-08-02 06:41:55 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
struct Token
|
2012-02-13 22:38:07 +01:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
enum class Type
|
|
|
|
{
|
|
|
|
Raw,
|
|
|
|
ShellExpand,
|
2012-08-11 12:13:48 +02:00
|
|
|
RegisterExpand,
|
|
|
|
OptionExpand,
|
2012-08-01 14:27:34 +02:00
|
|
|
CommandSeparator
|
|
|
|
};
|
|
|
|
Token() : m_type(Type::Raw) {}
|
|
|
|
|
2013-12-29 19:37:48 +01:00
|
|
|
Token(Type type, ByteCount b, ByteCount e, String str = "")
|
|
|
|
: m_type(type), m_begin(b), m_end(e), m_content(str) {}
|
2012-08-01 14:27:34 +02:00
|
|
|
|
|
|
|
Type type() const { return m_type; }
|
2013-12-29 19:37:48 +01:00
|
|
|
ByteCount begin() const { return m_begin; }
|
|
|
|
ByteCount end() const { return m_end; }
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& content() const { return m_content; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type m_type;
|
2013-12-29 19:37:48 +01:00
|
|
|
ByteCount m_begin;
|
|
|
|
ByteCount m_end;
|
2012-08-01 14:27:34 +02:00
|
|
|
String m_content;
|
|
|
|
};
|
|
|
|
|
2012-02-13 22:38:07 +01:00
|
|
|
|
2012-07-31 00:06:50 +02:00
|
|
|
using TokenList = std::vector<Token>;
|
2012-10-11 00:41:48 +02:00
|
|
|
using TokenPosList = std::vector<std::pair<ByteCount, ByteCount>>;
|
2012-07-31 00:06:50 +02:00
|
|
|
|
2012-10-08 19:33:53 +02:00
|
|
|
bool is_command_separator(char c)
|
2012-07-31 14:22:57 +02:00
|
|
|
{
|
|
|
|
return c == ';' or c == '\n';
|
|
|
|
}
|
|
|
|
|
2012-11-21 13:56:52 +01:00
|
|
|
struct unterminated_string : parse_error
|
|
|
|
{
|
2013-06-18 22:11:44 +02:00
|
|
|
unterminated_string(const String& open, const String& close, int nest = 0)
|
2013-01-04 18:39:13 +01:00
|
|
|
: parse_error{"unterminated string '" + open + "..." + close + "'" +
|
2013-05-13 14:23:07 +02:00
|
|
|
(nest > 0 ? "(nesting: " + to_string(nest) + ")" : "")}
|
2012-11-21 13:56:52 +01:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2013-03-19 18:58:21 +01:00
|
|
|
struct unknown_expand : parse_error
|
|
|
|
{
|
|
|
|
unknown_expand(const String& name)
|
|
|
|
: parse_error{"unknown expand '" + name + "'"} {}
|
|
|
|
};
|
|
|
|
|
2013-12-29 19:37:48 +01:00
|
|
|
String get_until_delimiter(const String& base, ByteCount& pos, char delimiter)
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
|
|
|
const ByteCount length = base.length();
|
|
|
|
String str;
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
char c = base[pos];
|
|
|
|
if (c == delimiter)
|
|
|
|
{
|
|
|
|
if (base[pos-1] != '\\')
|
|
|
|
return str;
|
|
|
|
str.back() = delimiter;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
str += c;
|
|
|
|
if (++pos == length)
|
|
|
|
throw unterminated_string(String{delimiter}, String{delimiter});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-29 19:37:48 +01:00
|
|
|
String get_until_delimiter(const String& base, ByteCount& pos,
|
|
|
|
char opening_delimiter, char closing_delimiter)
|
|
|
|
{
|
|
|
|
kak_assert(base[pos-1] == opening_delimiter);
|
|
|
|
const ByteCount length = base.length();
|
|
|
|
int level = 0;
|
|
|
|
ByteCount start = pos;
|
|
|
|
while (pos != length)
|
|
|
|
{
|
|
|
|
if (base[pos] == opening_delimiter)
|
|
|
|
++level;
|
|
|
|
else if (base[pos] == closing_delimiter)
|
|
|
|
{
|
|
|
|
if (level > 0)
|
|
|
|
--level;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
return base.substr(start, pos - start);
|
|
|
|
}
|
|
|
|
|
|
|
|
Token::Type token_type(const String& type_name)
|
|
|
|
{
|
|
|
|
if (type_name == "")
|
|
|
|
return Token::Type::Raw;
|
|
|
|
else if (type_name == "sh")
|
|
|
|
return Token::Type::ShellExpand;
|
|
|
|
else if (type_name == "reg")
|
|
|
|
return Token::Type::RegisterExpand;
|
|
|
|
else if (type_name == "opt")
|
|
|
|
return Token::Type::OptionExpand;
|
|
|
|
else
|
|
|
|
throw unknown_expand{type_name};
|
|
|
|
}
|
|
|
|
|
|
|
|
void skip_blanks_and_comments(const String& base, ByteCount& pos)
|
|
|
|
{
|
|
|
|
const ByteCount length = base.length();
|
|
|
|
while (pos != length)
|
|
|
|
{
|
|
|
|
if (is_horizontal_blank(base[pos]))
|
|
|
|
++pos;
|
|
|
|
else if (base[pos] == '\\' and pos+1 < length and base[pos+1] == '\n')
|
|
|
|
pos += 2;
|
|
|
|
else if (base[pos] == '#')
|
|
|
|
{
|
|
|
|
while (pos != length and base[pos] != '\n')
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TokenList parse(const String& line)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2011-09-13 23:16:48 +02:00
|
|
|
TokenList result;
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount length = line.length();
|
|
|
|
ByteCount pos = 0;
|
2012-07-31 14:22:57 +02:00
|
|
|
while (pos < length)
|
2011-09-07 20:16:56 +02:00
|
|
|
{
|
2013-12-29 19:37:48 +01:00
|
|
|
skip_blanks_and_comments(line, pos);
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount token_start = pos;
|
2012-12-15 17:47:50 +01:00
|
|
|
ByteCount start_pos = pos;
|
2012-02-13 22:38:07 +01:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
if (line[pos] == '"' or line[pos] == '\'')
|
2011-11-26 18:20:02 +01:00
|
|
|
{
|
2012-02-13 22:38:07 +01:00
|
|
|
char delimiter = line[pos];
|
2012-07-31 00:06:50 +02:00
|
|
|
|
|
|
|
token_start = ++pos;
|
2013-06-27 20:07:26 +02:00
|
|
|
String token = get_until_delimiter(line, pos, delimiter);
|
2013-12-29 19:37:48 +01:00
|
|
|
result.emplace_back(Token::Type::Raw, token_start, pos, std::move(token));
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
|
|
|
else if (line[pos] == '%')
|
|
|
|
{
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount type_start = ++pos;
|
2012-07-31 14:22:57 +02:00
|
|
|
while (isalpha(line[pos]))
|
|
|
|
++pos;
|
|
|
|
String type_name = line.substr(type_start, pos - type_start);
|
|
|
|
|
2013-03-19 18:58:21 +01:00
|
|
|
if (pos == length)
|
|
|
|
throw parse_error{"expected a string delimiter after '%" + type_name + "'"};
|
|
|
|
|
2013-12-29 19:37:48 +01:00
|
|
|
Token::Type type = token_type(type_name);
|
2012-10-08 19:33:53 +02:00
|
|
|
static const std::unordered_map<char, char> matching_delimiters = {
|
2012-07-31 14:22:57 +02:00
|
|
|
{ '(', ')' }, { '[', ']' }, { '{', '}' }, { '<', '>' }
|
|
|
|
};
|
|
|
|
|
2012-10-08 19:33:53 +02:00
|
|
|
char opening_delimiter = line[pos];
|
2012-07-31 14:22:57 +02:00
|
|
|
token_start = ++pos;
|
|
|
|
|
|
|
|
auto delim_it = matching_delimiters.find(opening_delimiter);
|
|
|
|
if (delim_it != matching_delimiters.end())
|
|
|
|
{
|
2012-10-08 19:33:53 +02:00
|
|
|
char closing_delimiter = delim_it->second;
|
2013-12-29 19:37:48 +01:00
|
|
|
String token = get_until_delimiter(line, pos, opening_delimiter, closing_delimiter);
|
2012-11-21 13:56:52 +01:00
|
|
|
if (pos == length)
|
|
|
|
throw unterminated_string("%" + type_name + opening_delimiter,
|
2013-12-29 19:37:48 +01:00
|
|
|
String{closing_delimiter}, 0);
|
|
|
|
result.emplace_back(type, token_start, pos, std::move(token));
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-06-27 20:07:26 +02:00
|
|
|
String token = get_until_delimiter(line, pos, opening_delimiter);
|
2013-12-29 19:37:48 +01:00
|
|
|
result.emplace_back(type, token_start, pos, std::move(token));
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-02-13 22:38:07 +01:00
|
|
|
}
|
|
|
|
else
|
2013-06-27 20:07:26 +02:00
|
|
|
{
|
2012-08-29 21:50:48 +02:00
|
|
|
while (pos != length and
|
|
|
|
((not is_command_separator(line[pos]) and
|
|
|
|
not is_horizontal_blank(line[pos]))
|
|
|
|
or (pos != 0 and line[pos-1] == '\\')))
|
2012-02-13 22:38:07 +01:00
|
|
|
++pos;
|
2013-06-27 20:07:26 +02:00
|
|
|
if (start_pos != pos)
|
|
|
|
{
|
|
|
|
auto token = line.substr(token_start, pos - token_start);
|
|
|
|
static const Regex regex{R"(\\([ \t;\n]))"};
|
2013-12-29 19:37:48 +01:00
|
|
|
result.emplace_back(Token::Type::Raw, token_start, pos,
|
2013-06-27 20:07:26 +02:00
|
|
|
boost::regex_replace(token, regex, "\\1"));
|
|
|
|
}
|
2012-07-31 00:06:50 +02:00
|
|
|
}
|
2011-11-26 18:20:02 +01:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
if (is_command_separator(line[pos]))
|
2013-12-29 19:37:48 +01:00
|
|
|
result.push_back(Token{ Token::Type::CommandSeparator, pos, pos+1 });
|
2012-01-15 02:37:35 +01:00
|
|
|
|
2011-11-26 18:20:02 +01:00
|
|
|
++pos;
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
2012-08-01 14:27:34 +02:00
|
|
|
if (not result.empty() and result.back().type() == Token::Type::CommandSeparator)
|
|
|
|
result.pop_back();
|
2011-09-07 20:16:56 +02:00
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
return result;
|
2011-11-26 19:32:57 +01:00
|
|
|
}
|
|
|
|
|
2012-08-02 06:41:55 +02:00
|
|
|
}
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
struct command_not_found : runtime_error
|
|
|
|
{
|
|
|
|
command_not_found(const String& command)
|
|
|
|
: runtime_error(command + " : no such command") {}
|
|
|
|
};
|
|
|
|
|
2013-12-24 03:06:22 +01:00
|
|
|
CommandManager::CommandMap::const_iterator CommandManager::find_command(const String& name) const
|
|
|
|
{
|
|
|
|
auto it = m_aliases.find(name);
|
|
|
|
const String& cmd_name = it == m_aliases.end() ? name : it->second;
|
|
|
|
|
|
|
|
return m_commands.find(cmd_name);
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void CommandManager::execute_single_command(CommandParameters params,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context) const
|
2012-08-06 19:29:51 +02:00
|
|
|
{
|
|
|
|
if (params.empty())
|
|
|
|
return;
|
|
|
|
|
2013-12-24 03:06:22 +01:00
|
|
|
memoryview<String> param_view(params.begin()+1, params.end());
|
|
|
|
auto command_it = find_command(params[0]);
|
2012-08-06 19:29:51 +02:00
|
|
|
if (command_it == m_commands.end())
|
|
|
|
throw command_not_found(params[0]);
|
|
|
|
command_it->second.command(param_view, context);
|
|
|
|
}
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
void CommandManager::execute(const String& command_line,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context,
|
2013-07-26 01:17:12 +02:00
|
|
|
memoryview<String> shell_params,
|
2012-05-29 07:42:26 +02:00
|
|
|
const EnvVarMap& env_vars)
|
2011-11-26 19:32:57 +01:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
TokenList tokens = parse(command_line);
|
|
|
|
if (tokens.empty())
|
2012-01-14 15:02:54 +01:00
|
|
|
return;
|
|
|
|
|
2012-08-06 19:29:51 +02:00
|
|
|
std::vector<String> params;
|
|
|
|
for (auto it = tokens.begin(); it != tokens.end(); ++it)
|
2012-01-15 02:37:35 +01:00
|
|
|
{
|
2012-08-06 19:29:51 +02:00
|
|
|
if (it->type() == Token::Type::ShellExpand)
|
2012-01-15 02:37:35 +01:00
|
|
|
{
|
2012-08-06 19:29:51 +02:00
|
|
|
String output = ShellManager::instance().eval(it->content(),
|
2012-09-09 17:10:53 +02:00
|
|
|
context, shell_params,
|
|
|
|
env_vars);
|
2012-08-06 19:29:51 +02:00
|
|
|
TokenList shell_tokens = parse(output);
|
|
|
|
it = tokens.erase(it);
|
|
|
|
for (auto& token : shell_tokens)
|
|
|
|
it = ++tokens.insert(it, std::move(token));
|
|
|
|
it -= shell_tokens.size();
|
|
|
|
|
|
|
|
// when last token is a ShellExpand which produces no output
|
|
|
|
if (it == tokens.end())
|
|
|
|
break;
|
2012-01-15 02:37:35 +01:00
|
|
|
}
|
2012-08-11 12:13:48 +02:00
|
|
|
if (it->type() == Token::Type::RegisterExpand)
|
|
|
|
{
|
|
|
|
if (it->content().length() != 1)
|
|
|
|
throw runtime_error("wrong register name: " + it->content());
|
|
|
|
Register& reg = RegisterManager::instance()[it->content()[0]];
|
|
|
|
params.push_back(reg.values(context)[0]);
|
|
|
|
}
|
|
|
|
if (it->type() == Token::Type::OptionExpand)
|
|
|
|
{
|
2012-11-22 13:50:29 +01:00
|
|
|
const Option& option = context.options()[it->content()];
|
2013-03-03 17:25:40 +01:00
|
|
|
params.push_back(option.get_as_string());
|
2012-08-11 12:13:48 +02:00
|
|
|
}
|
2012-08-06 19:29:51 +02:00
|
|
|
if (it->type() == Token::Type::CommandSeparator)
|
|
|
|
{
|
|
|
|
execute_single_command(params, context);
|
|
|
|
params.clear();
|
|
|
|
}
|
|
|
|
if (it->type() == Token::Type::Raw)
|
|
|
|
params.push_back(it->content());
|
2012-01-15 02:37:35 +01:00
|
|
|
}
|
2012-08-06 19:29:51 +02:00
|
|
|
execute_single_command(params, context);
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 22:53:10 +01:00
|
|
|
Completions CommandManager::complete(const Context& context, CompletionFlags flags,
|
2012-10-11 00:41:48 +02:00
|
|
|
const String& command_line, ByteCount cursor_pos)
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2013-12-29 19:37:48 +01:00
|
|
|
TokenList tokens = parse(command_line);
|
2011-09-13 23:16:48 +02:00
|
|
|
|
2011-11-26 20:05:49 +01:00
|
|
|
size_t token_to_complete = tokens.size();
|
2011-09-13 23:16:48 +02:00
|
|
|
for (size_t i = 0; i < tokens.size(); ++i)
|
|
|
|
{
|
2013-12-29 19:37:48 +01:00
|
|
|
if (tokens[i].begin() <= cursor_pos and tokens[i].end() >= cursor_pos)
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
|
|
|
token_to_complete = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-19 20:50:28 +02:00
|
|
|
if (token_to_complete == 0 or tokens.empty()) // command name completion
|
2011-09-13 23:16:48 +02:00
|
|
|
{
|
2013-12-29 19:37:48 +01:00
|
|
|
ByteCount cmd_start = tokens.empty() ? 0 : tokens[0].begin();
|
2011-10-19 20:50:28 +02:00
|
|
|
Completions result(cmd_start, cursor_pos);
|
2012-04-14 03:17:09 +02:00
|
|
|
String prefix = command_line.substr(cmd_start,
|
|
|
|
cursor_pos - cmd_start);
|
2011-09-13 23:16:48 +02:00
|
|
|
|
|
|
|
for (auto& command : m_commands)
|
|
|
|
{
|
2013-11-12 20:38:19 +01:00
|
|
|
if (command.second.flags & CommandFlags::Hidden)
|
|
|
|
continue;
|
|
|
|
if ( prefix_match(command.first, prefix))
|
2011-09-13 23:16:48 +02:00
|
|
|
result.candidates.push_back(command.first);
|
|
|
|
}
|
2012-06-02 17:49:56 +02:00
|
|
|
std::sort(result.candidates.begin(), result.candidates.end());
|
2011-09-13 23:16:48 +02:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(not tokens.empty());
|
2012-07-31 00:06:50 +02:00
|
|
|
if (tokens[0].type() != Token::Type::Raw)
|
|
|
|
return Completions();
|
|
|
|
|
|
|
|
const String& command_name = tokens[0].content();
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2013-12-24 03:06:22 +01:00
|
|
|
auto command_it = find_command(command_name);
|
2011-09-16 11:18:51 +02:00
|
|
|
if (command_it == m_commands.end() or not command_it->second.completer)
|
|
|
|
return Completions();
|
|
|
|
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount start = token_to_complete < tokens.size() ?
|
2013-12-29 19:37:48 +01:00
|
|
|
tokens[token_to_complete].begin() : cursor_pos;
|
2011-11-26 20:05:49 +01:00
|
|
|
Completions result(start , cursor_pos);
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount cursor_pos_in_token = cursor_pos - start;
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
std::vector<String> params;
|
|
|
|
for (auto token_it = tokens.begin()+1; token_it != tokens.end(); ++token_it)
|
|
|
|
params.push_back(token_it->content());
|
2013-11-04 22:53:10 +01:00
|
|
|
result.candidates = command_it->second.completer(context, flags, params,
|
2011-09-16 11:18:51 +02:00
|
|
|
token_to_complete - 1,
|
|
|
|
cursor_pos_in_token);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-08-06 21:37:43 +02:00
|
|
|
CandidateList PerArgumentCommandCompleter::operator()(const Context& context,
|
2013-11-04 22:53:10 +01:00
|
|
|
CompletionFlags flags,
|
2013-07-26 01:17:12 +02:00
|
|
|
CommandParameters params,
|
2011-09-16 11:18:51 +02:00
|
|
|
size_t token_to_complete,
|
2012-10-11 00:41:48 +02:00
|
|
|
ByteCount pos_in_token) const
|
2011-09-16 11:18:51 +02:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
if (token_to_complete >= m_completers.size())
|
2011-09-16 11:18:51 +02:00
|
|
|
return CandidateList();
|
|
|
|
|
|
|
|
// it is possible to try to complete a new argument
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(token_to_complete <= params.size());
|
2011-09-16 11:18:51 +02:00
|
|
|
|
2012-04-14 03:17:09 +02:00
|
|
|
const String& argument = token_to_complete < params.size() ?
|
2012-08-01 14:27:34 +02:00
|
|
|
params[token_to_complete] : String();
|
2013-11-04 22:53:10 +01:00
|
|
|
return m_completers[token_to_complete](context, flags, argument, pos_in_token);
|
2011-09-13 23:16:48 +02:00
|
|
|
}
|
|
|
|
|
2011-09-07 20:16:56 +02:00
|
|
|
}
|