2012-05-07 05:13:34 +02:00
|
|
|
#include "commands.hh"
|
|
|
|
|
|
|
|
#include "command_manager.hh"
|
|
|
|
#include "buffer_manager.hh"
|
|
|
|
#include "option_manager.hh"
|
|
|
|
#include "context.hh"
|
|
|
|
#include "buffer.hh"
|
|
|
|
#include "window.hh"
|
|
|
|
#include "file.hh"
|
2012-06-28 14:11:43 +02:00
|
|
|
#include "client.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
#include "regex.hh"
|
|
|
|
#include "highlighter_registry.hh"
|
|
|
|
#include "filter_registry.hh"
|
|
|
|
#include "register_manager.hh"
|
|
|
|
#include "completion.hh"
|
2012-05-29 07:22:18 +02:00
|
|
|
#include "shell_manager.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-06-05 15:31:14 +02:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#include <mach-o/dyld.h>
|
|
|
|
#endif
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
using namespace std::placeholders;
|
|
|
|
|
|
|
|
// berk
|
|
|
|
extern bool quit_requested;
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
extern std::unordered_map<Key, std::function<void (Context& context)>> keymap;
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2012-05-25 07:07:37 +02:00
|
|
|
struct unknown_option : public runtime_error
|
|
|
|
{
|
|
|
|
unknown_option(const String& name)
|
|
|
|
: runtime_error("unknown option '" + name + "'") {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct missing_option_value: public runtime_error
|
|
|
|
{
|
|
|
|
missing_option_value(const String& name)
|
|
|
|
: runtime_error("missing value for option '" + name + "'") {}
|
|
|
|
};
|
|
|
|
|
|
|
|
// ParameterParser provides tools to parse command parameters.
|
|
|
|
// There are 3 types of parameters:
|
|
|
|
// * unnamed options, which are accessed by position (ignoring named ones)
|
|
|
|
// * named boolean options, which are enabled using '-name' syntax
|
|
|
|
// * named string options, which are defined using '-name value' syntax
|
|
|
|
struct ParametersParser
|
|
|
|
{
|
|
|
|
// the options defines named options, if they map to true, then
|
|
|
|
// they are understood as string options, else they are understood as
|
|
|
|
// boolean option.
|
|
|
|
ParametersParser(const CommandParameters& params,
|
|
|
|
std::unordered_map<String, bool> options)
|
|
|
|
: m_params(params), m_positional(params.size(), true), m_options(options)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < params.size(); ++i)
|
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
if (params[i][0] == '-')
|
2012-05-25 07:07:37 +02:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
auto it = options.find(params[i].substr(1));
|
2012-05-25 07:07:37 +02:00
|
|
|
if (it == options.end())
|
2012-08-01 14:27:34 +02:00
|
|
|
throw unknown_option(params[i]);
|
2012-05-25 07:07:37 +02:00
|
|
|
|
|
|
|
if (it->second)
|
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
if (i + 1 == params.size() or params[i+1][0] == '-')
|
|
|
|
throw missing_option_value(params[i]);
|
2012-05-25 07:07:37 +02:00
|
|
|
|
|
|
|
m_positional[i+1] = false;
|
|
|
|
}
|
|
|
|
m_positional[i] = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// all options following -- are positional
|
2012-08-01 14:27:34 +02:00
|
|
|
if (params[i] == "--")
|
2012-05-25 07:07:37 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if a named option (either string or boolean) is specified
|
|
|
|
bool has_option(const String& name) const
|
|
|
|
{
|
|
|
|
assert(m_options.find(name) != m_options.end());
|
2012-07-31 00:06:50 +02:00
|
|
|
for (auto& param : m_params)
|
2012-05-25 07:07:37 +02:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
if (param[0] == '-' and param.substr(1) == name)
|
2012-05-25 07:07:37 +02:00
|
|
|
return true;
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
if (param == "--")
|
2012-05-25 07:07:37 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get a string option value, returns an empty string if the option
|
|
|
|
// is not defined
|
|
|
|
const String& option_value(const String& name) const
|
|
|
|
{
|
|
|
|
auto it = m_options.find(name);
|
|
|
|
assert(it != m_options.end());
|
|
|
|
assert(it->second == true);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < m_params.size(); ++i)
|
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
if (m_params[i][0] == '-' and m_params[i].substr(1) == name)
|
|
|
|
return m_params[i+1];
|
2012-05-25 07:07:37 +02:00
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
if (m_params[i] == "--")
|
2012-05-25 07:07:37 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
static String empty;
|
|
|
|
return empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t positional_count() const
|
|
|
|
{
|
|
|
|
size_t res = 0;
|
|
|
|
for (bool positional : m_positional)
|
|
|
|
{
|
|
|
|
if (positional)
|
|
|
|
++res;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct iterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef String value_type;
|
|
|
|
typedef const value_type* pointer;
|
|
|
|
typedef const value_type& reference;
|
|
|
|
typedef size_t difference_type;
|
|
|
|
typedef std::forward_iterator_tag iterator_category;
|
|
|
|
|
|
|
|
iterator(const ParametersParser& parser, size_t index)
|
|
|
|
: m_parser(parser), m_index(index) {}
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& operator*() const
|
2012-05-25 07:07:37 +02:00
|
|
|
{
|
|
|
|
assert(m_parser.m_positional[m_index]);
|
|
|
|
return m_parser.m_params[m_index];
|
|
|
|
}
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
const String* operator->() const
|
2012-07-31 00:06:50 +02:00
|
|
|
{
|
|
|
|
assert(m_parser.m_positional[m_index]);
|
|
|
|
return &m_parser.m_params[m_index];
|
|
|
|
}
|
|
|
|
|
2012-05-25 07:07:37 +02:00
|
|
|
iterator& operator++()
|
|
|
|
{
|
|
|
|
while (m_index < m_parser.m_positional.size() and
|
|
|
|
not m_parser.m_positional[++m_index]) {}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const iterator& other) const
|
|
|
|
{
|
|
|
|
return &m_parser == &other.m_parser and m_index == other.m_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const iterator& other) const
|
|
|
|
{
|
|
|
|
return &m_parser != &other.m_parser or m_index != other.m_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const iterator& other) const
|
|
|
|
{
|
|
|
|
assert(&m_parser == &other.m_parser);
|
|
|
|
return m_index < other.m_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const ParametersParser& m_parser;
|
|
|
|
size_t m_index;
|
|
|
|
};
|
|
|
|
|
|
|
|
// positional parameter begin
|
|
|
|
iterator begin() const
|
|
|
|
{
|
|
|
|
int index = 0;
|
|
|
|
while (index < m_positional.size() and not m_positional[index])
|
|
|
|
++index;
|
|
|
|
return iterator(*this, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
// positional parameter end
|
|
|
|
iterator end() const
|
|
|
|
{
|
|
|
|
return iterator(*this, m_params.size());
|
|
|
|
}
|
|
|
|
|
2012-05-29 01:50:11 +02:00
|
|
|
// access positional parameter by index
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& operator[] (size_t index) const
|
2012-05-29 01:50:11 +02:00
|
|
|
{
|
|
|
|
assert(index < positional_count());
|
|
|
|
iterator it = begin();
|
|
|
|
while (index)
|
|
|
|
{
|
|
|
|
++it;
|
|
|
|
--index;
|
|
|
|
}
|
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
2012-05-25 07:07:37 +02:00
|
|
|
private:
|
|
|
|
const CommandParameters& m_params;
|
|
|
|
std::vector<bool> m_positional;
|
|
|
|
std::unordered_map<String, bool> m_options;
|
|
|
|
};
|
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
Buffer* open_or_create(const String& filename, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
Buffer* buffer = NULL;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
buffer = create_buffer_from_file(filename);
|
|
|
|
}
|
|
|
|
catch (file_not_found& what)
|
|
|
|
{
|
2012-08-15 22:36:45 +02:00
|
|
|
context.print_status("new file " + filename);
|
2012-05-07 05:13:34 +02:00
|
|
|
buffer = new Buffer(filename, Buffer::Type::NewFile);
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<bool force_reload>
|
2012-08-06 22:02:11 +02:00
|
|
|
void edit(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-08-07 23:20:11 +02:00
|
|
|
ParametersParser parser(params, { { "scratch", false } });
|
|
|
|
|
|
|
|
const size_t param_count = parser.positional_count();
|
|
|
|
if (param_count == 0 or param_count > 3)
|
2012-05-07 05:13:34 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-08-07 23:20:11 +02:00
|
|
|
const String& filename = parser[0];
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
Buffer* buffer = nullptr;
|
|
|
|
if (not force_reload)
|
|
|
|
buffer = BufferManager::instance().get_buffer(filename);
|
|
|
|
if (not buffer)
|
2012-08-07 23:20:11 +02:00
|
|
|
{
|
|
|
|
if (parser.has_option("scratch"))
|
|
|
|
buffer = new Buffer(filename, Buffer::Type::Scratch);
|
|
|
|
else
|
2012-08-15 22:36:45 +02:00
|
|
|
buffer = open_or_create(filename, context);
|
2012-08-07 23:20:11 +02:00
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
Window& window = *buffer->get_or_create_window();
|
|
|
|
|
2012-08-07 23:20:11 +02:00
|
|
|
if (param_count > 1)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-08-07 23:20:11 +02:00
|
|
|
int line = std::max(0, str_to_int(parser[1]) - 1);
|
|
|
|
int column = param_count > 2 ?
|
|
|
|
std::max(0, str_to_int(parser[2]) - 1) : 0;
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
window.select(window.buffer().iterator_at({line, column}));
|
|
|
|
}
|
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
context.change_editor(window);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void write_buffer(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() > 1)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-08-11 11:48:54 +02:00
|
|
|
Buffer& buffer = context.buffer();
|
2012-08-07 23:20:53 +02:00
|
|
|
|
|
|
|
if (params.empty() and buffer.type() == Buffer::Type::Scratch)
|
|
|
|
throw runtime_error("cannot write scratch buffer without a filename");
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
String filename = params.empty() ? buffer.name()
|
2012-08-01 14:27:34 +02:00
|
|
|
: parse_filename(params[0]);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
write_buffer_to_file(buffer, filename);
|
|
|
|
buffer.notify_saved();
|
|
|
|
}
|
|
|
|
|
2012-08-14 14:20:18 +02:00
|
|
|
void write_all_buffers(const CommandParameters& params, Context& context)
|
|
|
|
{
|
|
|
|
if (params.size() != 0)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
|
|
|
for (auto& buffer : BufferManager::instance())
|
|
|
|
{
|
|
|
|
if (buffer->type() != Buffer::Type::Scratch and buffer->is_modified())
|
|
|
|
{
|
|
|
|
write_buffer_to_file(*buffer, buffer->name());
|
|
|
|
buffer->notify_saved();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
template<bool force>
|
2012-08-06 22:02:11 +02:00
|
|
|
void quit(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 0)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
|
|
|
if (not force)
|
|
|
|
{
|
|
|
|
std::vector<String> names;
|
|
|
|
for (auto& buffer : BufferManager::instance())
|
|
|
|
{
|
2012-08-08 19:36:40 +02:00
|
|
|
if (buffer->type() != Buffer::Type::Scratch and buffer->is_modified())
|
|
|
|
names.push_back(buffer->name());
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
if (not names.empty())
|
|
|
|
{
|
|
|
|
String message = "modified buffers remaining: [";
|
|
|
|
for (auto it = names.begin(); it != names.end(); ++it)
|
|
|
|
{
|
|
|
|
if (it != names.begin())
|
|
|
|
message += ", ";
|
|
|
|
message += *it;
|
|
|
|
}
|
|
|
|
message += "]";
|
2012-06-30 00:44:14 +02:00
|
|
|
throw runtime_error(message);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
quit_requested = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<bool force>
|
2012-08-06 22:02:11 +02:00
|
|
|
void write_and_quit(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
write_buffer(params, context);
|
|
|
|
quit<force>(CommandParameters(), context);
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void show_buffer(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& buffer_name = params[0];
|
2012-07-31 00:06:50 +02:00
|
|
|
Buffer* buffer = BufferManager::instance().get_buffer(buffer_name);
|
2012-05-07 05:13:34 +02:00
|
|
|
if (not buffer)
|
2012-07-31 00:06:50 +02:00
|
|
|
throw runtime_error("buffer " + buffer_name + " does not exists");
|
2012-05-29 00:51:12 +02:00
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
context.change_editor(*buffer->get_or_create_window());
|
2012-05-29 00:51:12 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void delete_buffer(const CommandParameters& params, Context& context)
|
2012-05-29 00:51:12 +02:00
|
|
|
{
|
2012-06-14 20:05:42 +02:00
|
|
|
if (params.size() > 1)
|
2012-05-29 00:51:12 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
|
|
|
BufferManager& manager = BufferManager::instance();
|
2012-06-14 20:05:42 +02:00
|
|
|
Buffer* buffer = nullptr;
|
|
|
|
if (params.empty())
|
|
|
|
buffer = &context.buffer();
|
|
|
|
else
|
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& buffer_name = params[0];
|
2012-07-31 00:06:50 +02:00
|
|
|
buffer = manager.get_buffer(buffer_name);
|
2012-06-14 20:05:42 +02:00
|
|
|
if (not buffer)
|
2012-07-31 00:06:50 +02:00
|
|
|
throw runtime_error("buffer " + buffer_name + " does not exists");
|
2012-06-14 20:05:42 +02:00
|
|
|
}
|
2012-05-29 00:51:12 +02:00
|
|
|
if (buffer->type()!= Buffer::Type::Scratch and buffer->is_modified())
|
2012-07-31 00:06:50 +02:00
|
|
|
throw runtime_error("buffer " + buffer->name() + " is modified");
|
2012-05-29 00:51:12 +02:00
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
if (&context.buffer() == buffer)
|
2012-05-29 00:51:12 +02:00
|
|
|
{
|
|
|
|
if (manager.count() == 1)
|
2012-06-14 20:05:42 +02:00
|
|
|
throw runtime_error("buffer " + buffer->name() + " is the last one");
|
2012-08-08 19:36:40 +02:00
|
|
|
for (auto& buf : manager)
|
2012-05-29 00:51:12 +02:00
|
|
|
{
|
2012-08-08 19:36:40 +02:00
|
|
|
if (buf != buffer)
|
2012-05-29 00:51:12 +02:00
|
|
|
{
|
2012-08-15 22:36:45 +02:00
|
|
|
context.change_editor(*buf->get_or_create_window());
|
2012-05-29 00:51:12 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete buffer;
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void add_highlighter(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-05-25 07:07:37 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } });
|
|
|
|
if (parser.positional_count() < 1)
|
2012-05-07 05:13:34 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
2012-05-25 07:07:37 +02:00
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
auto begin = parser.begin();
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& name = *begin;
|
2012-07-31 00:06:50 +02:00
|
|
|
std::vector<String> highlighter_params;
|
|
|
|
for (++begin; begin != parser.end(); ++begin)
|
2012-08-01 14:27:34 +02:00
|
|
|
highlighter_params.push_back(*begin);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
Window& window = context.window();
|
|
|
|
HighlighterGroup& group = parser.has_option("group") ?
|
|
|
|
window.highlighters().get_group(parser.option_value("group"))
|
|
|
|
: window.highlighters();
|
|
|
|
|
|
|
|
registry.add_highlighter_to_group(window, group, name,
|
|
|
|
highlighter_params);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void rm_highlighter(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-05-25 07:07:37 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } });
|
|
|
|
if (parser.positional_count() != 1)
|
2012-05-07 05:13:34 +02:00
|
|
|
throw wrong_argument_count();
|
2012-05-25 07:07:37 +02:00
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
Window& window = context.window();
|
|
|
|
HighlighterGroup& group = parser.has_option("group") ?
|
|
|
|
window.highlighters().get_group(parser.option_value("group"))
|
|
|
|
: window.highlighters();
|
|
|
|
|
2012-08-11 11:48:54 +02:00
|
|
|
group.remove(parser[0]);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void add_filter(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-06-12 20:24:29 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } });
|
|
|
|
if (parser.positional_count() < 1)
|
2012-05-07 05:13:34 +02:00
|
|
|
throw wrong_argument_count();
|
2012-06-12 20:24:29 +02:00
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
FilterRegistry& registry = FilterRegistry::instance();
|
2012-06-12 20:24:29 +02:00
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
auto begin = parser.begin();
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& name = *begin;
|
2012-07-31 00:06:50 +02:00
|
|
|
std::vector<String> filter_params;
|
|
|
|
for (++begin; begin != parser.end(); ++begin)
|
2012-08-01 14:27:34 +02:00
|
|
|
filter_params.push_back(*begin);
|
2012-06-12 20:24:29 +02:00
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
Window& window = context.window();
|
|
|
|
FilterGroup& group = parser.has_option("group") ?
|
|
|
|
window.filters().get_group(parser.option_value("group"))
|
|
|
|
: window.filters();
|
|
|
|
|
|
|
|
registry.add_filter_to_group(group, name, filter_params);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void rm_filter(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-06-12 20:24:29 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } });
|
|
|
|
if (parser.positional_count() != 1)
|
2012-05-07 05:13:34 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-06-30 00:44:14 +02:00
|
|
|
Window& window = context.window();
|
|
|
|
FilterGroup& group = parser.has_option("group") ?
|
|
|
|
window.filters().get_group(parser.option_value("group"))
|
|
|
|
: window.filters();
|
|
|
|
|
2012-08-11 11:48:54 +02:00
|
|
|
group.remove(parser[0]);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void add_hook(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-07-31 14:22:57 +02:00
|
|
|
if (params.size() != 4)
|
2012-05-07 05:13:34 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
// copy so that the lambda gets a copy as well
|
2012-08-01 14:27:34 +02:00
|
|
|
String regex = params[2];
|
|
|
|
String command = params[3];
|
2012-05-07 05:13:34 +02:00
|
|
|
auto hook_func = [=](const String& param, const Context& context) {
|
|
|
|
if (boost::regex_match(param.begin(), param.end(),
|
|
|
|
Regex(regex.begin(), regex.end())))
|
2012-08-06 22:02:11 +02:00
|
|
|
{
|
|
|
|
Context new_context(context);
|
|
|
|
CommandManager::instance().execute(command, new_context);
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
};
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& scope = params[0];
|
|
|
|
const String& name = params[1];
|
2012-07-31 00:06:50 +02:00
|
|
|
if (scope == "global")
|
|
|
|
GlobalHookManager::instance().add_hook(name, hook_func);
|
|
|
|
else if (scope == "buffer")
|
|
|
|
context.buffer().hook_manager().add_hook(name, hook_func);
|
|
|
|
else if (scope == "window")
|
|
|
|
context.window().hook_manager().add_hook(name , hook_func);
|
2012-05-07 05:13:34 +02:00
|
|
|
else
|
2012-07-31 00:06:50 +02:00
|
|
|
throw runtime_error("error: no such hook container " + scope);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-05-29 07:43:09 +02:00
|
|
|
EnvVarMap params_to_env_var_map(const CommandParameters& params)
|
|
|
|
{
|
|
|
|
std::unordered_map<String, String> vars;
|
|
|
|
char param_name[] = "param0";
|
|
|
|
for (size_t i = 0; i < params.size(); ++i)
|
|
|
|
{
|
|
|
|
param_name[sizeof(param_name) - 2] = '0' + i;
|
2012-08-01 14:27:34 +02:00
|
|
|
vars[param_name] = params[i];
|
2012-05-29 07:43:09 +02:00
|
|
|
}
|
|
|
|
return vars;
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void define_command(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-05-25 07:07:37 +02:00
|
|
|
ParametersParser parser(params,
|
|
|
|
{ { "env-params", false },
|
2012-06-02 17:49:35 +02:00
|
|
|
{ "allow-override", false },
|
2012-05-29 07:22:18 +02:00
|
|
|
{ "shell-completion", true } });
|
2012-05-25 07:07:37 +02:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
if (parser.positional_count() != 2)
|
2012-05-07 05:13:34 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-05-25 07:07:37 +02:00
|
|
|
auto begin = parser.begin();
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& cmd_name = *begin;
|
2012-06-02 17:49:35 +02:00
|
|
|
|
|
|
|
if (CommandManager::instance().command_defined(cmd_name) and
|
|
|
|
not parser.has_option("allow-override"))
|
|
|
|
throw runtime_error("command '" + cmd_name + "' already defined");
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
String commands = parser[1];
|
2012-05-25 07:07:37 +02:00
|
|
|
Command cmd;
|
|
|
|
if (parser.has_option("env-params"))
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-08-06 22:02:11 +02:00
|
|
|
cmd = [=](const CommandParameters& params, Context& context) {
|
2012-07-31 14:22:57 +02:00
|
|
|
CommandManager::instance().execute(commands, context,
|
2012-05-29 07:43:09 +02:00
|
|
|
params_to_env_var_map(params));
|
2012-05-25 07:07:37 +02:00
|
|
|
};
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-08-06 22:02:11 +02:00
|
|
|
cmd = [=](const CommandParameters& params, Context& context) {
|
2012-05-25 07:07:37 +02:00
|
|
|
if (not params.empty())
|
|
|
|
throw wrong_argument_count();
|
2012-07-31 14:22:57 +02:00
|
|
|
CommandManager::instance().execute(commands, context);
|
2012-05-25 07:07:37 +02:00
|
|
|
};
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
2012-05-29 07:22:18 +02:00
|
|
|
|
|
|
|
if (parser.has_option("shell-completion"))
|
|
|
|
{
|
|
|
|
String shell_cmd = parser.option_value("shell-completion");
|
2012-08-06 21:37:43 +02:00
|
|
|
auto completer = [=](const Context& context, const CommandParameters& params,
|
2012-05-29 07:22:18 +02:00
|
|
|
size_t token_to_complete, size_t pos_in_token)
|
|
|
|
{
|
2012-05-29 07:43:09 +02:00
|
|
|
EnvVarMap vars = params_to_env_var_map(params);
|
2012-05-29 07:22:18 +02:00
|
|
|
vars["token_to_complete"] = int_to_str(token_to_complete);
|
|
|
|
vars["pos_in_token"] = int_to_str(pos_in_token);
|
|
|
|
String output = ShellManager::instance().eval(shell_cmd, context, vars);
|
|
|
|
return split(output, '\n');
|
|
|
|
};
|
2012-07-31 14:22:57 +02:00
|
|
|
CommandManager::instance().register_command(cmd_name, cmd, completer);
|
2012-05-29 07:22:18 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
CommandManager::instance().register_command(cmd_name, cmd);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void echo_message(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
String message;
|
|
|
|
for (auto& param : params)
|
2012-08-01 14:27:34 +02:00
|
|
|
message += param + " ";
|
2012-08-15 22:36:45 +02:00
|
|
|
context.print_status(message);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void exec_commands_in_file(const CommandParameters& params,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
String file_content = read_file(parse_filename(params[0]));
|
2012-07-31 14:22:57 +02:00
|
|
|
CommandManager::instance().execute(file_content, context);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void exec_commands_in_runtime_file(const CommandParameters& params,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
const String& filename = params[0];
|
2012-05-07 05:13:34 +02:00
|
|
|
char buffer[2048];
|
|
|
|
#if defined(__linux__)
|
|
|
|
ssize_t res = readlink("/proc/self/exe", buffer, 2048 - filename.length());
|
|
|
|
assert(res != -1);
|
|
|
|
buffer[res] = '\0';
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
uint32_t bufsize = 2048 - filename.length();
|
|
|
|
_NSGetExecutablePath(buffer, &bufsize);
|
2012-06-05 16:23:47 +02:00
|
|
|
char* canonical_path = realpath(buffer, NULL);
|
|
|
|
strncpy(buffer, canonical_path, 2048 - filename.length());
|
|
|
|
free(canonical_path);
|
2012-05-07 05:13:34 +02:00
|
|
|
#else
|
|
|
|
# error "finding executable path is not implemented on this platform"
|
|
|
|
#endif
|
|
|
|
char* ptr = strrchr(buffer, '/');
|
|
|
|
if (ptr)
|
|
|
|
{
|
|
|
|
strcpy(ptr+1, filename.c_str());
|
2012-08-06 22:02:11 +02:00
|
|
|
exec_commands_in_file(CommandParameters(buffer), context);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-12 15:10:52 +02:00
|
|
|
void set_option(OptionManager& option_manager, const CommandParameters& params,
|
2012-08-06 22:02:11 +02:00
|
|
|
Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 2)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
option_manager.set_option(params[0], Option(params[1]));
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class RegisterRestorer
|
|
|
|
{
|
|
|
|
public:
|
2012-08-05 20:13:41 +02:00
|
|
|
RegisterRestorer(char name, const Context& context)
|
2012-06-29 13:25:34 +02:00
|
|
|
: m_name(name)
|
|
|
|
{
|
2012-08-05 20:13:41 +02:00
|
|
|
memoryview<String> save = RegisterManager::instance()[name].values(context);
|
2012-06-29 13:25:34 +02:00
|
|
|
m_save = std::vector<String>(save.begin(), save.end());
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
~RegisterRestorer()
|
|
|
|
{ RegisterManager::instance()[m_name] = m_save; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<String> m_save;
|
|
|
|
char m_name;
|
|
|
|
};
|
|
|
|
|
2012-06-28 14:11:43 +02:00
|
|
|
class BatchClient : public Client
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-06-06 01:15:19 +02:00
|
|
|
public:
|
2012-08-15 22:36:45 +02:00
|
|
|
BatchClient(const KeyList& keys, Client* previous_client)
|
2012-06-06 01:15:19 +02:00
|
|
|
: m_keys(keys), m_pos(0)
|
|
|
|
{
|
2012-08-15 22:36:45 +02:00
|
|
|
m_previous_client = previous_client;
|
2012-06-06 01:15:19 +02:00
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-08-05 20:13:41 +02:00
|
|
|
String prompt(const String&, const Context&, Completer)
|
2012-06-06 01:15:19 +02:00
|
|
|
{
|
|
|
|
size_t begin = m_pos;
|
|
|
|
while (m_pos < m_keys.size() and m_keys[m_pos].key != '\n')
|
|
|
|
++m_pos;
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
String result;
|
2012-06-06 01:15:19 +02:00
|
|
|
for (size_t i = begin; i < m_pos; ++i)
|
|
|
|
result += String() + m_keys[i].key;
|
|
|
|
++m_pos;
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
return result;
|
2012-06-06 01:15:19 +02:00
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-06-06 01:15:19 +02:00
|
|
|
Key get_key()
|
|
|
|
{
|
|
|
|
if (m_pos >= m_keys.size())
|
2012-05-07 05:13:34 +02:00
|
|
|
throw runtime_error("no more characters");
|
2012-06-06 01:15:19 +02:00
|
|
|
return m_keys[m_pos++];
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_status(const String& status)
|
|
|
|
{
|
2012-06-28 14:11:43 +02:00
|
|
|
m_previous_client->print_status(status);
|
2012-06-06 01:15:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void draw_window(Window& window)
|
|
|
|
{
|
2012-06-28 14:11:43 +02:00
|
|
|
m_previous_client->draw_window(window);
|
2012-06-06 01:15:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool has_key_left() const { return m_pos < m_keys.size(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
const KeyList& m_keys;
|
2012-06-28 14:11:43 +02:00
|
|
|
size_t m_pos;
|
|
|
|
Client* m_previous_client;
|
2012-06-06 01:15:19 +02:00
|
|
|
};
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void exec_keys(const KeyList& keys, Context& context)
|
2012-06-06 01:15:19 +02:00
|
|
|
{
|
2012-08-15 22:36:45 +02:00
|
|
|
BatchClient batch_client(keys, context.has_client() ? &context.client()
|
|
|
|
: nullptr);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-08-05 20:13:41 +02:00
|
|
|
RegisterRestorer quote('"', context);
|
|
|
|
RegisterRestorer slash('/', context);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-08-08 19:37:04 +02:00
|
|
|
scoped_edition edition(context.editor());
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
int count = 0;
|
2012-08-15 22:36:45 +02:00
|
|
|
Context new_context(batch_client);
|
|
|
|
new_context.change_editor(context.window());
|
2012-06-28 14:11:43 +02:00
|
|
|
while (batch_client.has_key_left())
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-06-28 14:11:43 +02:00
|
|
|
Key key = batch_client.get_key();
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
if (key.modifiers == Key::Modifiers::None and isdigit(key.key))
|
|
|
|
count = count * 10 + key.key - '0';
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto it = keymap.find(key);
|
|
|
|
if (it != keymap.end())
|
2012-08-05 19:39:37 +02:00
|
|
|
{
|
|
|
|
new_context.numeric_param(count);
|
|
|
|
it->second(new_context);
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void exec_string(const CommandParameters& params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
KeyList keys = parse_keys(params[0]);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
exec_keys(keys, context);
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void menu(const CommandParameters& params, Context& context)
|
2012-05-18 07:20:46 +02:00
|
|
|
{
|
2012-05-29 01:50:11 +02:00
|
|
|
ParametersParser parser(params, { { "auto-single", false } });
|
|
|
|
|
|
|
|
size_t count = parser.positional_count();
|
|
|
|
if (count == 0 or (count % 2) != 0)
|
2012-05-18 07:20:46 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-05-29 01:50:11 +02:00
|
|
|
if (count == 2 and parser.has_option("auto-single"))
|
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
CommandManager::instance().execute(parser[1], context);
|
2012-05-29 01:50:11 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-18 07:20:46 +02:00
|
|
|
std::ostringstream oss;
|
2012-05-29 01:50:11 +02:00
|
|
|
for (int i = 0; i < count; i += 2)
|
2012-05-18 07:20:46 +02:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
oss << i/2 + 1 << "[" << parser[i] << "] ";
|
2012-05-18 07:20:46 +02:00
|
|
|
}
|
|
|
|
oss << "(empty cancels): ";
|
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
String choice = context.client().prompt(oss.str(), context,
|
|
|
|
complete_nothing);
|
2012-06-27 14:26:29 +02:00
|
|
|
int i = str_to_int(choice);
|
2012-05-18 07:20:46 +02:00
|
|
|
|
2012-05-29 01:50:11 +02:00
|
|
|
if (i > 0 and i < (count / 2) + 1)
|
2012-08-01 14:27:34 +02:00
|
|
|
CommandManager::instance().execute(parser[(i-1)*2+1], context);
|
2012-05-18 07:20:46 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void try_catch(const CommandParameters& params, Context& context)
|
2012-06-04 16:27:34 +02:00
|
|
|
{
|
2012-07-31 14:22:57 +02:00
|
|
|
if (params.size() != 3)
|
2012-06-04 16:27:34 +02:00
|
|
|
throw wrong_argument_count();
|
2012-08-01 14:27:34 +02:00
|
|
|
if (params[1] != "catch")
|
2012-07-31 14:22:57 +02:00
|
|
|
throw runtime_error("try needs a catch");
|
2012-06-04 16:27:34 +02:00
|
|
|
|
|
|
|
CommandManager& command_manager = CommandManager::instance();
|
|
|
|
try
|
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
command_manager.execute(params[0], context);
|
2012-06-04 16:27:34 +02:00
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& e)
|
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
command_manager.execute(params[2], context);
|
2012-06-04 16:27:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void register_commands()
|
|
|
|
{
|
|
|
|
CommandManager& cm = CommandManager::instance();
|
|
|
|
|
2012-05-29 05:34:54 +02:00
|
|
|
PerArgumentCommandCompleter filename_completer({ complete_filename });
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_commands({ "e", "edit" }, edit<false>, filename_completer);
|
|
|
|
cm.register_commands({ "e!", "edit!" }, edit<true>, filename_completer);
|
|
|
|
cm.register_commands({ "w", "write" }, write_buffer, filename_completer);
|
2012-08-14 14:20:18 +02:00
|
|
|
cm.register_commands({ "wa", "writeall" }, write_all_buffers);
|
2012-05-07 05:13:34 +02:00
|
|
|
cm.register_commands({ "q", "quit" }, quit<false>);
|
|
|
|
cm.register_commands({ "q!", "quit!" }, quit<true>);
|
|
|
|
cm.register_command("wq", write_and_quit<false>);
|
|
|
|
cm.register_command("wq!", write_and_quit<true>);
|
2012-05-29 05:34:54 +02:00
|
|
|
|
|
|
|
PerArgumentCommandCompleter buffer_completer({
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const String& prefix, size_t cursor_pos)
|
2012-05-29 05:34:54 +02:00
|
|
|
{ return BufferManager::instance().complete_buffername(prefix, cursor_pos); }
|
|
|
|
});
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_commands({ "b", "buffer" }, show_buffer, buffer_completer);
|
|
|
|
cm.register_commands({ "db", "delbuf" }, delete_buffer, buffer_completer);
|
2012-05-29 05:34:54 +02:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
cm.register_commands({ "ah", "addhl" }, add_highlighter,
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const CommandParameters& params,
|
|
|
|
size_t token_to_complete, size_t pos_in_token)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-08-06 21:37:43 +02:00
|
|
|
Window& w = context.window();
|
2012-05-07 05:13:34 +02:00
|
|
|
const String& arg = token_to_complete < params.size() ?
|
2012-08-01 14:27:34 +02:00
|
|
|
params[token_to_complete] : String();
|
|
|
|
if (token_to_complete == 1 and params[0] == "-group")
|
2012-05-07 05:13:34 +02:00
|
|
|
return w.highlighters().complete_group_id(arg, pos_in_token);
|
2012-08-01 14:27:34 +02:00
|
|
|
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0] == "-group"))
|
2012-05-07 05:13:34 +02:00
|
|
|
return HighlighterRegistry::instance().complete_highlighter(arg, pos_in_token);
|
|
|
|
else
|
|
|
|
return CandidateList();
|
|
|
|
});
|
|
|
|
cm.register_commands({ "rh", "rmhl" }, rm_highlighter,
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const CommandParameters& params,
|
|
|
|
size_t token_to_complete, size_t pos_in_token)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-08-06 21:37:43 +02:00
|
|
|
Window& w = context.window();
|
2012-05-07 05:13:34 +02:00
|
|
|
const String& arg = token_to_complete < params.size() ?
|
2012-08-01 14:27:34 +02:00
|
|
|
params[token_to_complete] : String();
|
|
|
|
if (token_to_complete == 1 and params[0] == "-group")
|
2012-05-07 05:13:34 +02:00
|
|
|
return w.highlighters().complete_group_id(arg, pos_in_token);
|
2012-08-01 14:27:34 +02:00
|
|
|
else if (token_to_complete == 2 and params[0] == "-group")
|
|
|
|
return w.highlighters().get_group(params[1]).complete_id(arg, pos_in_token);
|
2012-05-07 05:13:34 +02:00
|
|
|
else
|
|
|
|
return w.highlighters().complete_id(arg, pos_in_token);
|
|
|
|
});
|
|
|
|
cm.register_commands({ "af", "addfilter" }, add_filter,
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const CommandParameters& params,
|
|
|
|
size_t token_to_complete, size_t pos_in_token)
|
2012-06-12 20:24:29 +02:00
|
|
|
{
|
2012-08-06 21:37:43 +02:00
|
|
|
Window& w = context.window();
|
2012-06-12 20:24:29 +02:00
|
|
|
const String& arg = token_to_complete < params.size() ?
|
2012-08-01 14:27:34 +02:00
|
|
|
params[token_to_complete] : String();
|
|
|
|
if (token_to_complete == 1 and params[0] == "-group")
|
2012-06-12 20:24:29 +02:00
|
|
|
return w.filters().complete_group_id(arg, pos_in_token);
|
2012-08-01 14:27:34 +02:00
|
|
|
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0] == "-group"))
|
2012-06-12 20:24:29 +02:00
|
|
|
return FilterRegistry::instance().complete_filter(arg, pos_in_token);
|
|
|
|
else
|
|
|
|
return CandidateList();
|
|
|
|
});
|
2012-05-07 05:13:34 +02:00
|
|
|
cm.register_commands({ "rf", "rmfilter" }, rm_filter,
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const CommandParameters& params,
|
|
|
|
size_t token_to_complete, size_t pos_in_token)
|
2012-06-12 20:24:29 +02:00
|
|
|
{
|
2012-08-06 21:37:43 +02:00
|
|
|
Window& w = context.window();
|
2012-06-12 20:24:29 +02:00
|
|
|
const String& arg = token_to_complete < params.size() ?
|
2012-08-01 14:27:34 +02:00
|
|
|
params[token_to_complete] : String();
|
|
|
|
if (token_to_complete == 1 and params[0] == "-group")
|
2012-06-12 20:24:29 +02:00
|
|
|
return w.filters().complete_group_id(arg, pos_in_token);
|
2012-08-01 14:27:34 +02:00
|
|
|
else if (token_to_complete == 2 and params[0] == "-group")
|
|
|
|
return w.filters().get_group(params[1]).complete_id(arg, pos_in_token);
|
2012-06-12 20:24:29 +02:00
|
|
|
else
|
|
|
|
return w.filters().complete_id(arg, pos_in_token);
|
|
|
|
});
|
2012-05-29 05:34:54 +02:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_command("hook", add_hook);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_command("source", exec_commands_in_file, filename_completer);
|
2012-05-07 05:13:34 +02:00
|
|
|
cm.register_command("runtime", exec_commands_in_runtime_file);
|
|
|
|
|
|
|
|
cm.register_command("exec", exec_string);
|
2012-05-18 07:20:46 +02:00
|
|
|
cm.register_command("menu", menu);
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_command("try", try_catch);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_command("def", define_command);
|
2012-05-07 05:13:34 +02:00
|
|
|
cm.register_command("echo", echo_message);
|
|
|
|
|
|
|
|
cm.register_commands({ "setg", "setglobal" },
|
2012-08-06 22:02:11 +02:00
|
|
|
[](const CommandParameters& params, Context& context)
|
2012-06-14 15:16:44 +02:00
|
|
|
{ set_option(GlobalOptionManager::instance(), params, context); },
|
2012-05-07 05:13:34 +02:00
|
|
|
PerArgumentCommandCompleter({
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const String& prefix, size_t cursor_pos)
|
2012-05-07 05:13:34 +02:00
|
|
|
{ return GlobalOptionManager::instance().complete_option_name(prefix, cursor_pos); }
|
|
|
|
}));
|
|
|
|
cm.register_commands({ "setb", "setbuffer" },
|
2012-08-06 22:02:11 +02:00
|
|
|
[](const CommandParameters& params, Context& context)
|
2012-06-14 15:16:44 +02:00
|
|
|
{ set_option(context.buffer().option_manager(), params, context); },
|
2012-05-07 05:13:34 +02:00
|
|
|
PerArgumentCommandCompleter({
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const String& prefix, size_t cursor_pos)
|
|
|
|
{ return context.buffer().option_manager().complete_option_name(prefix, cursor_pos); }
|
2012-05-07 05:13:34 +02:00
|
|
|
}));
|
|
|
|
cm.register_commands({ "setw", "setwindow" },
|
2012-08-06 22:02:11 +02:00
|
|
|
[](const CommandParameters& params, Context& context)
|
2012-06-14 15:16:44 +02:00
|
|
|
{ set_option(context.window().option_manager(), params, context); },
|
2012-05-07 05:13:34 +02:00
|
|
|
PerArgumentCommandCompleter({
|
2012-08-06 21:37:43 +02:00
|
|
|
[](const Context& context, const String& prefix, size_t cursor_pos)
|
|
|
|
{ return context.window().option_manager().complete_option_name(prefix, cursor_pos); }
|
2012-05-07 05:13:34 +02:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|