2012-05-07 05:13:34 +02:00
|
|
|
#include "commands.hh"
|
|
|
|
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "buffer.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
#include "buffer_manager.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "client_manager.hh"
|
|
|
|
#include "color_registry.hh"
|
|
|
|
#include "command_manager.hh"
|
|
|
|
#include "completion.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
#include "context.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "debug.hh"
|
|
|
|
#include "event_manager.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
#include "file.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "filter.hh"
|
2012-11-23 13:40:20 +01:00
|
|
|
#include "highlighter.hh"
|
2013-03-29 19:31:06 +01:00
|
|
|
#include "highlighters.hh"
|
2013-09-12 23:47:23 +02:00
|
|
|
#include "client.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "option_manager.hh"
|
|
|
|
#include "option_types.hh"
|
|
|
|
#include "parameters_parser.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
#include "register_manager.hh"
|
2012-05-29 07:22:18 +02:00
|
|
|
#include "shell_manager.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "string.hh"
|
|
|
|
#include "user_interface.hh"
|
2013-02-25 19:38:20 +01:00
|
|
|
#include "utf8_iterator.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "window.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-08-29 00:17:37 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
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
|
|
|
{
|
2012-10-16 14:59:39 +02:00
|
|
|
Buffer* buffer = create_buffer_from_file(filename);
|
|
|
|
if (not buffer)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-04 18:50:00 +02:00
|
|
|
context.print_status({ "new file " + filename, get_color("StatusLine") });
|
2012-11-20 19:47:56 +01:00
|
|
|
buffer = new Buffer(filename, Buffer::Flags::File | Buffer::Flags::New);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2012-08-29 00:17:37 +02:00
|
|
|
Buffer* open_fifo(const String& name , const String& filename, Context& context)
|
|
|
|
{
|
2013-03-25 19:11:26 +01:00
|
|
|
int fd = open(parse_filename(filename).c_str(), O_RDONLY);
|
2013-01-30 19:08:16 +01:00
|
|
|
fcntl(fd, F_SETFD, FD_CLOEXEC);
|
2012-08-29 00:17:37 +02:00
|
|
|
if (fd < 0)
|
|
|
|
throw runtime_error("unable to open " + filename);
|
2013-03-22 18:39:00 +01:00
|
|
|
|
2013-04-10 18:54:01 +02:00
|
|
|
BufferManager::instance().delete_buffer_if_exists(name);
|
2013-03-22 18:39:00 +01:00
|
|
|
|
2012-11-21 13:43:10 +01:00
|
|
|
Buffer* buffer = new Buffer(name, Buffer::Flags::Fifo | Buffer::Flags::NoUndo);
|
2012-08-29 00:17:37 +02:00
|
|
|
|
2013-01-10 18:54:40 +01:00
|
|
|
auto watcher = new FDWatcher(fd, [buffer](FDWatcher& watcher) {
|
2013-02-28 18:51:11 +01:00
|
|
|
constexpr size_t buffer_size = 1024 * 16;
|
|
|
|
char data[buffer_size];
|
|
|
|
ssize_t count = read(watcher.fd(), data, buffer_size);
|
2013-06-06 19:39:53 +02:00
|
|
|
buffer->insert(buffer->end()-1, count > 0 ? String(data, data+count)
|
|
|
|
: "*** kak: fifo closed ***\n");
|
2012-11-20 19:48:27 +01:00
|
|
|
ClientManager::instance().redraw_clients();
|
|
|
|
if (count <= 0)
|
|
|
|
{
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(buffer->flags() & Buffer::Flags::Fifo);
|
2012-11-20 19:48:27 +01:00
|
|
|
buffer->flags() &= ~Buffer::Flags::Fifo;
|
2013-01-10 18:54:40 +01:00
|
|
|
close(watcher.fd());
|
|
|
|
delete &watcher;
|
2012-11-20 19:48:27 +01:00
|
|
|
}
|
2012-08-29 00:17:37 +02:00
|
|
|
});
|
|
|
|
|
2013-04-11 14:29:10 +02:00
|
|
|
buffer->hooks().add_hook("BufClose", "",
|
2013-01-10 18:54:40 +01:00
|
|
|
[buffer, watcher](const String&, const Context&) {
|
|
|
|
// Check if fifo is still alive, else watcher is already dead
|
|
|
|
if (buffer->flags() & Buffer::Flags::Fifo)
|
|
|
|
{
|
|
|
|
close(watcher->fd());
|
|
|
|
delete watcher;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-08-29 00:17:37 +02:00
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
template<bool force_reload>
|
2013-07-26 01:17:12 +02:00
|
|
|
void edit(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-08-29 00:17:37 +02:00
|
|
|
ParametersParser parser(params, { { "scratch", false },
|
2013-04-02 14:22:55 +02:00
|
|
|
{ "fifo", true } },
|
|
|
|
ParametersParser::Flags::None, 1, 3);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-03-25 19:58:23 +01:00
|
|
|
const String name = parser[0];
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
Buffer* buffer = nullptr;
|
|
|
|
if (not force_reload)
|
2013-03-21 19:09:31 +01:00
|
|
|
buffer = BufferManager::instance().get_buffer_ifp(name);
|
2012-05-07 05:13:34 +02:00
|
|
|
if (not buffer)
|
2012-08-07 23:20:11 +02:00
|
|
|
{
|
|
|
|
if (parser.has_option("scratch"))
|
2013-04-11 23:09:17 +02:00
|
|
|
{
|
|
|
|
BufferManager::instance().delete_buffer_if_exists(name);
|
2012-11-20 19:47:56 +01:00
|
|
|
buffer = new Buffer(name, Buffer::Flags::None);
|
2013-04-11 23:09:17 +02:00
|
|
|
}
|
2012-08-29 00:17:37 +02:00
|
|
|
else if (parser.has_option("fifo"))
|
|
|
|
buffer = open_fifo(name, parser.option_value("fifo"), context);
|
2012-08-07 23:20:11 +02:00
|
|
|
else
|
2012-08-29 00:17:37 +02:00
|
|
|
buffer = open_or_create(name, context);
|
2012-08-07 23:20:11 +02:00
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-09-28 14:14:49 +02:00
|
|
|
BufferManager::instance().set_last_used_buffer(*buffer);
|
2012-11-07 14:04:47 +01:00
|
|
|
|
2013-03-27 14:27:12 +01:00
|
|
|
const size_t param_count = parser.positional_count();
|
2012-11-12 19:59:25 +01:00
|
|
|
if (buffer != &context.buffer() or param_count > 1)
|
|
|
|
context.push_jump();
|
|
|
|
|
2012-11-07 14:04:47 +01:00
|
|
|
if (buffer != &context.buffer())
|
|
|
|
{
|
|
|
|
auto& manager = ClientManager::instance();
|
|
|
|
context.change_editor(manager.get_unused_window_for_buffer(*buffer));
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-08-28 20:05:01 +02:00
|
|
|
if (param_count > 1 and not parser[1].empty())
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-05-17 14:09:42 +02:00
|
|
|
int line = std::max(0, str_to_int(parser[1]) - 1);
|
2013-08-28 20:05:01 +02:00
|
|
|
int column = param_count > 2 and not parser[2].empty() ?
|
2013-05-17 14:09:42 +02:00
|
|
|
std::max(0, str_to_int(parser[2]) - 1) : 0;
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-06-04 13:41:30 +02:00
|
|
|
context.editor().select(context.buffer().clamp({ line, column }));
|
2012-11-07 14:04:47 +01:00
|
|
|
if (context.has_window())
|
|
|
|
context.window().center_selection();
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void write_buffer(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
|
|
|
|
2012-11-20 19:47:56 +01:00
|
|
|
if (params.empty() and !(buffer.flags() & Buffer::Flags::File))
|
|
|
|
throw runtime_error("cannot write a non file buffer without a filename");
|
2012-08-07 23:20:53 +02:00
|
|
|
|
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);
|
2013-03-13 18:51:36 +01:00
|
|
|
|
|
|
|
if (filename == buffer.name())
|
|
|
|
buffer.notify_saved();
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void write_all_buffers(CommandParameters params, Context& context)
|
2012-08-14 14:20:18 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 0)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
|
|
|
for (auto& buffer : BufferManager::instance())
|
|
|
|
{
|
2012-11-20 19:47:56 +01:00
|
|
|
if ((buffer->flags() & Buffer::Flags::File) and buffer->is_modified())
|
2012-08-14 14:20:18 +02:00
|
|
|
{
|
|
|
|
write_buffer_to_file(*buffer, buffer->name());
|
|
|
|
buffer->notify_saved();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
template<bool force>
|
2013-07-26 01:17:12 +02:00
|
|
|
void quit(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 0)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-10-30 14:00:44 +01:00
|
|
|
if (not force and ClientManager::instance().count() == 1)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
std::vector<String> names;
|
|
|
|
for (auto& buffer : BufferManager::instance())
|
|
|
|
{
|
2012-12-03 13:33:05 +01:00
|
|
|
if ((buffer->flags() & Buffer::Flags::File) and buffer->is_modified())
|
2012-08-08 19:36:40 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2012-11-20 18:54:35 +01:00
|
|
|
// unwind back to this client event handler.
|
2012-10-30 14:00:44 +01:00
|
|
|
throw client_removed{};
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<bool force>
|
2013-07-26 01:17:12 +02:00
|
|
|
void write_and_quit(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
write_buffer(params, context);
|
|
|
|
quit<force>(CommandParameters(), context);
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void show_buffer(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2013-03-21 19:09:31 +01:00
|
|
|
Buffer& buffer = BufferManager::instance().get_buffer(params[0]);
|
|
|
|
BufferManager::instance().set_last_used_buffer(buffer);
|
2012-11-07 14:04:47 +01:00
|
|
|
|
2013-03-21 19:09:31 +01:00
|
|
|
if (&buffer != &context.buffer())
|
2012-11-07 14:04:47 +01:00
|
|
|
{
|
2012-11-12 19:59:25 +01:00
|
|
|
context.push_jump();
|
2012-11-07 14:04:47 +01:00
|
|
|
auto& manager = ClientManager::instance();
|
2013-03-21 19:09:31 +01:00
|
|
|
context.change_editor(manager.get_unused_window_for_buffer(buffer));
|
2012-11-07 14:04:47 +01:00
|
|
|
}
|
2012-05-29 00:51:12 +02:00
|
|
|
}
|
|
|
|
|
2012-12-28 14:07:35 +01:00
|
|
|
template<bool force>
|
2013-07-26 01:17:12 +02:00
|
|
|
void delete_buffer(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();
|
2013-03-21 19:09:31 +01:00
|
|
|
Buffer& buffer = params.empty() ? context.buffer() : manager.get_buffer(params[0]);
|
|
|
|
if (not force and (buffer.flags() & Buffer::Flags::File) and buffer.is_modified())
|
|
|
|
throw runtime_error("buffer " + buffer.name() + " is modified");
|
2012-05-29 00:51:12 +02:00
|
|
|
|
2012-11-07 14:02:23 +01:00
|
|
|
if (manager.count() == 1)
|
2013-03-21 19:09:31 +01:00
|
|
|
throw runtime_error("buffer " + buffer.name() + " is the last one");
|
2012-11-07 14:02:23 +01:00
|
|
|
|
2013-04-10 18:54:01 +02:00
|
|
|
manager.delete_buffer(buffer);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void set_buffer_name(CommandParameters params, Context& context)
|
2013-04-22 13:48:18 +02:00
|
|
|
{
|
|
|
|
ParametersParser parser(params, OptionMap{},
|
|
|
|
ParametersParser::Flags::None, 1, 1);
|
|
|
|
if (not context.buffer().set_name(parser[0]))
|
|
|
|
throw runtime_error("unable to change buffer name to " + parser[0]);
|
|
|
|
}
|
|
|
|
|
2012-12-09 18:58:58 +01:00
|
|
|
template<typename Group>
|
|
|
|
Group& get_group(Group& root, const String& group_path)
|
|
|
|
{
|
|
|
|
auto it = find(group_path, '/');
|
|
|
|
Group& group = root.get_group(String(group_path.begin(), it));
|
|
|
|
if (it != group_path.end())
|
|
|
|
return get_group(group, String(it+1, group_path.end()));
|
|
|
|
else
|
|
|
|
return group;
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void add_highlighter(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } }, ParametersParser::Flags::None, 1);
|
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") ?
|
2013-01-04 18:39:13 +01:00
|
|
|
get_group(window.highlighters(), parser.option_value("group"))
|
|
|
|
: window.highlighters();
|
2012-06-30 00:44:14 +02:00
|
|
|
|
2012-11-23 13:40:20 +01:00
|
|
|
auto& factory = registry[name];
|
2013-03-06 14:17:28 +01:00
|
|
|
group.append(factory(highlighter_params, window));
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void rm_highlighter(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } }, ParametersParser::Flags::None, 1, 1);
|
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") ?
|
2013-01-04 18:39:13 +01:00
|
|
|
get_group(window.highlighters(), parser.option_value("group"))
|
|
|
|
: window.highlighters();
|
2012-06-30 00:44:14 +02:00
|
|
|
|
2012-08-11 11:48:54 +02:00
|
|
|
group.remove(parser[0]);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void add_filter(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } }, ParametersParser::Flags::None, 1);
|
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-09-24 13:56:39 +02:00
|
|
|
Editor& editor = context.editor();
|
2012-06-30 00:44:14 +02:00
|
|
|
FilterGroup& group = parser.has_option("group") ?
|
2013-01-04 18:39:13 +01:00
|
|
|
get_group(editor.filters(), parser.option_value("group"))
|
|
|
|
: editor.filters();
|
2012-06-30 00:44:14 +02:00
|
|
|
|
2012-11-23 13:40:20 +01:00
|
|
|
auto& factory = registry[name];
|
|
|
|
group.append(factory(filter_params));
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void rm_filter(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "group", true } }, ParametersParser::Flags::None, 1, 1);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-09-24 13:56:39 +02:00
|
|
|
Editor& editor = context.editor();
|
2012-06-30 00:44:14 +02:00
|
|
|
FilterGroup& group = parser.has_option("group") ?
|
2013-01-04 18:39:13 +01:00
|
|
|
get_group(editor.filters(), parser.option_value("group"))
|
|
|
|
: editor.filters();
|
2012-06-30 00:44:14 +02:00
|
|
|
|
2012-08-11 11:48:54 +02:00
|
|
|
group.remove(parser[0]);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-04-11 14:29:10 +02:00
|
|
|
static HookManager& get_hook_manager(const String& scope, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-11 14:29:10 +02:00
|
|
|
if (scope == "global")
|
|
|
|
return GlobalHooks::instance();
|
|
|
|
else if (scope == "buffer")
|
|
|
|
return context.buffer().hooks();
|
|
|
|
else if (scope == "window")
|
|
|
|
return context.window().hooks();
|
|
|
|
throw runtime_error("error: no such hook container " + scope);
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void add_hook(CommandParameters params, Context& context)
|
2013-04-11 14:29:10 +02:00
|
|
|
{
|
|
|
|
ParametersParser parser(params, { { "id", true } }, ParametersParser::Flags::None, 4, 4);
|
2012-07-31 14:22:57 +02:00
|
|
|
// copy so that the lambda gets a copy as well
|
2013-04-11 14:29:10 +02:00
|
|
|
Regex regex(parser[2].begin(), parser[2].end());
|
|
|
|
String command = parser[3];
|
2013-01-17 13:44:14 +01:00
|
|
|
auto hook_func = [=](const String& param, Context& context) {
|
2012-08-29 14:15:13 +02:00
|
|
|
if (boost::regex_match(param.begin(), param.end(), regex))
|
2013-03-20 19:06:15 +01:00
|
|
|
CommandManager::instance().execute(command, context, {},
|
|
|
|
{ { "hook_param", param } });
|
2012-05-07 05:13:34 +02:00
|
|
|
};
|
2013-04-11 14:29:10 +02:00
|
|
|
String id = parser.has_option("id") ? parser.option_value("id") : "";
|
|
|
|
get_hook_manager(parser[0], context).add_hook(parser[1], id, hook_func);
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void rm_hooks(CommandParameters params, Context& context)
|
2013-04-11 14:29:10 +02:00
|
|
|
{
|
|
|
|
ParametersParser parser(params, {}, ParametersParser::Flags::None, 2, 2);
|
|
|
|
get_hook_manager(parser[0], context).remove_hooks(parser[1]);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
EnvVarMap params_to_env_var_map(CommandParameters params)
|
2012-05-29 07:43:09 +02:00
|
|
|
{
|
|
|
|
std::unordered_map<String, String> vars;
|
|
|
|
char param_name[] = "param0";
|
|
|
|
for (size_t i = 0; i < params.size(); ++i)
|
|
|
|
{
|
2013-01-04 18:39:13 +01:00
|
|
|
param_name[sizeof(param_name) - 2] = '0' + i;
|
|
|
|
vars[param_name] = params[i];
|
2012-05-29 07:43:09 +02:00
|
|
|
}
|
|
|
|
return vars;
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void define_command(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-09-09 17:10:53 +02:00
|
|
|
{ "shell-params", false },
|
2012-06-02 17:49:35 +02:00
|
|
|
{ "allow-override", false },
|
2012-09-12 14:21:42 +02:00
|
|
|
{ "file-completion", false },
|
2013-03-27 14:27:12 +01:00
|
|
|
{ "shell-completion", true } },
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser::Flags::None,
|
2013-03-27 14:27:12 +01:00
|
|
|
2, 2);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
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
|
|
|
{
|
2013-07-26 01:17:12 +02:00
|
|
|
cmd = [=](CommandParameters params, Context& context) {
|
2012-09-09 17:10:53 +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
|
|
|
}
|
2012-09-09 17:10:53 +02:00
|
|
|
if (parser.has_option("shell-params"))
|
|
|
|
{
|
2013-07-26 01:17:12 +02:00
|
|
|
cmd = [=](CommandParameters params, Context& context) {
|
2013-04-03 18:51:40 +02:00
|
|
|
CommandManager::instance().execute(commands, context, params);
|
2012-09-09 17:10:53 +02:00
|
|
|
};
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
else
|
|
|
|
{
|
2013-07-26 01:17:12 +02:00
|
|
|
cmd = [=](CommandParameters params, Context& context) {
|
2013-01-04 18:39:13 +01: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
|
|
|
|
2012-09-12 14:21:42 +02:00
|
|
|
CommandCompleter completer;
|
|
|
|
if (parser.has_option("file-completion"))
|
|
|
|
{
|
2013-07-26 01:17:12 +02:00
|
|
|
completer = [](const Context& context, CommandParameters params,
|
2012-10-11 00:41:48 +02:00
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
2012-09-12 14:21:42 +02:00
|
|
|
{
|
|
|
|
const String& prefix = token_to_complete < params.size() ?
|
|
|
|
params[token_to_complete] : String();
|
2013-03-14 13:42:07 +01:00
|
|
|
return complete_filename(prefix, context.options()["ignored_files"].get<Regex>(), pos_in_token);
|
2012-09-12 14:21:42 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
else if (parser.has_option("shell-completion"))
|
2012-05-29 07:22:18 +02:00
|
|
|
{
|
|
|
|
String shell_cmd = parser.option_value("shell-completion");
|
2013-07-26 01:17:12 +02:00
|
|
|
completer = [=](const Context& context, CommandParameters params,
|
2012-10-11 00:41:48 +02:00
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
2012-05-29 07:22:18 +02:00
|
|
|
{
|
2013-05-13 14:23:07 +02:00
|
|
|
EnvVarMap vars = {
|
|
|
|
{ "token_to_complete", to_string(token_to_complete) },
|
|
|
|
{ "pos_in_token", to_string(pos_in_token) }
|
|
|
|
};
|
|
|
|
String output = ShellManager::instance().eval(shell_cmd, context, params, vars);
|
|
|
|
return split(output, '\n');
|
2012-05-29 07:22:18 +02:00
|
|
|
};
|
|
|
|
}
|
2012-09-12 14:21:42 +02:00
|
|
|
CommandManager::instance().register_command(cmd_name, cmd, completer);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void echo_message(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-25 18:51:54 +02:00
|
|
|
ParametersParser parser(params, { { "color", true } },
|
2013-04-12 14:22:01 +02:00
|
|
|
ParametersParser::Flags::OptionsOnlyAtStart);
|
2012-05-07 05:13:34 +02:00
|
|
|
String message;
|
2013-04-12 14:22:01 +02:00
|
|
|
for (auto& param : parser)
|
2012-08-01 14:27:34 +02:00
|
|
|
message += param + " ";
|
2013-04-25 18:51:54 +02:00
|
|
|
ColorPair color = get_color(parser.has_option("color") ?
|
|
|
|
parser.option_value("color") : "StatusLine");
|
2013-04-12 14:22:01 +02:00
|
|
|
context.print_status({ std::move(message), color } );
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void write_debug_message(CommandParameters params, Context&)
|
2013-04-10 13:45:17 +02:00
|
|
|
{
|
|
|
|
String message;
|
|
|
|
for (auto& param : params)
|
|
|
|
message += param + " ";
|
|
|
|
write_debug(message);
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void exec_commands_in_file(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
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void set_global_option(CommandParameters params, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "add", false } },
|
|
|
|
ParametersParser::Flags::OptionsOnlyAtStart,
|
|
|
|
2, 2);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-03-29 19:34:57 +01:00
|
|
|
Option& opt = GlobalOptions::instance().get_local_option(parser[0]);
|
|
|
|
if (parser.has_option("add"))
|
|
|
|
opt.add_from_string(parser[1]);
|
|
|
|
else
|
|
|
|
opt.set_from_string(parser[1]);
|
2013-03-22 13:44:40 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void set_buffer_option(CommandParameters params, Context& context)
|
2013-03-22 13:44:40 +01:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "buffer", true}, { "add", false } },
|
|
|
|
ParametersParser::Flags::OptionsOnlyAtStart,
|
|
|
|
2, 2);
|
2013-03-22 13:44:40 +01:00
|
|
|
|
|
|
|
OptionManager& options = parser.has_option("buffer") ?
|
|
|
|
BufferManager::instance().get_buffer(parser.option_value("buffer")).options()
|
|
|
|
: context.buffer().options();
|
|
|
|
|
2013-03-29 19:34:57 +01:00
|
|
|
Option& opt = options.get_local_option(parser[0]);
|
|
|
|
if (parser.has_option("add"))
|
|
|
|
opt.add_from_string(parser[1]);
|
|
|
|
else
|
|
|
|
opt.set_from_string(parser[1]);
|
2013-03-22 13:44:40 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void set_window_option(CommandParameters params, Context& context)
|
2013-03-22 13:44:40 +01:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "add", false } },
|
|
|
|
ParametersParser::Flags::OptionsOnlyAtStart,
|
|
|
|
2, 2);
|
2013-03-22 13:44:40 +01:00
|
|
|
|
2013-03-29 19:34:57 +01:00
|
|
|
Option& opt = context.window().options().get_local_option(parser[0]);
|
|
|
|
if (parser.has_option("add"))
|
|
|
|
opt.add_from_string(parser[1]);
|
|
|
|
else
|
|
|
|
opt.set_from_string(parser[1]);
|
2013-03-03 17:25:40 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void declare_option(CommandParameters params, Context& context)
|
2013-03-03 17:25:40 +01:00
|
|
|
{
|
|
|
|
if (params.size() != 2 and params.size() != 3)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
Option* opt = nullptr;
|
|
|
|
|
|
|
|
if (params[0] == "int")
|
|
|
|
opt = &GlobalOptions::instance().declare_option<int>(params[1], 0);
|
2013-07-24 22:56:21 +02:00
|
|
|
if (params[0] == "bool")
|
|
|
|
opt = &GlobalOptions::instance().declare_option<bool>(params[1], 0);
|
2013-03-03 17:25:40 +01:00
|
|
|
else if (params[0] == "str")
|
|
|
|
opt = &GlobalOptions::instance().declare_option<String>(params[1], "");
|
2013-03-26 14:26:07 +01:00
|
|
|
else if (params[0] == "regex")
|
|
|
|
opt = &GlobalOptions::instance().declare_option<Regex>(params[1], Regex{});
|
2013-03-06 14:12:56 +01:00
|
|
|
else if (params[0] == "int-list")
|
|
|
|
opt = &GlobalOptions::instance().declare_option<std::vector<int>>(params[1], {});
|
2013-03-14 14:11:00 +01:00
|
|
|
else if (params[0] == "str-list")
|
|
|
|
opt = &GlobalOptions::instance().declare_option<std::vector<String>>(params[1], {});
|
2013-03-26 00:14:38 +01:00
|
|
|
else if (params[0] == "line-flag-list")
|
|
|
|
opt = &GlobalOptions::instance().declare_option<std::vector<LineAndFlag>>(params[1], {});
|
2013-03-03 17:25:40 +01:00
|
|
|
else
|
|
|
|
throw runtime_error("unknown type " + params[0]);
|
|
|
|
|
|
|
|
if (params.size() == 3)
|
|
|
|
opt->set_from_string(params[2]);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-09-12 23:39:34 +02:00
|
|
|
class DraftUI : public UserInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void print_status(const DisplayLine&) override {}
|
|
|
|
|
|
|
|
void menu_show(memoryview<String>, DisplayCoord, ColorPair, ColorPair, MenuStyle) override {}
|
|
|
|
void menu_select(int) override {}
|
|
|
|
void menu_hide() override {}
|
|
|
|
|
|
|
|
void info_show(const String&, DisplayCoord, ColorPair, MenuStyle) override {}
|
|
|
|
void info_hide() override {}
|
|
|
|
|
|
|
|
void draw(const DisplayBuffer&, const DisplayLine&) override {}
|
|
|
|
DisplayCoord dimensions() override { return {0,0}; }
|
|
|
|
bool is_key_available() override { return false; }
|
|
|
|
Key get_key() override { return 'a'; }
|
|
|
|
|
|
|
|
void set_input_callback(InputCallback) override {}
|
|
|
|
};
|
|
|
|
|
2013-01-17 14:06:06 +01:00
|
|
|
template<typename Func>
|
2013-07-26 01:17:12 +02:00
|
|
|
void context_wrap(CommandParameters params, Context& context, Func func)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "client", true }, { "draft", false }},
|
2013-04-17 19:10:06 +02:00
|
|
|
ParametersParser::Flags::OptionsOnlyAtStart, 1);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-01-17 14:06:06 +01:00
|
|
|
Context& real_context = parser.has_option("client") ?
|
2013-04-15 14:28:21 +02:00
|
|
|
ClientManager::instance().get_client(parser.option_value("client")).context()
|
2012-12-03 18:57:57 +01:00
|
|
|
: context;
|
2013-01-17 13:58:09 +01:00
|
|
|
|
2013-03-22 13:42:29 +01:00
|
|
|
if (parser.has_option("draft"))
|
2013-02-07 19:25:07 +01:00
|
|
|
{
|
|
|
|
Editor& editor = real_context.editor();
|
2013-09-12 23:47:23 +02:00
|
|
|
Client client(std::unique_ptr<UserInterface>(new DraftUI()), editor,
|
|
|
|
real_context.has_client() ?
|
|
|
|
real_context.client().name() : "");
|
2013-03-22 13:42:29 +01:00
|
|
|
DynamicSelectionList sels{editor.buffer(), editor.selections()};
|
2013-09-11 19:54:30 +02:00
|
|
|
auto restore_sels = on_scope_end([&]{ editor.select(sels); });
|
2013-09-12 23:47:23 +02:00
|
|
|
func(parser, client.context());
|
2013-02-07 19:25:07 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
func(parser, real_context);
|
2013-04-09 14:21:48 +02:00
|
|
|
|
|
|
|
// force redraw of this client window
|
|
|
|
if (parser.has_option("client") and real_context.has_window())
|
|
|
|
real_context.window().forget_timestamp();
|
2012-12-03 18:57:57 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void exec_string(CommandParameters params, Context& context)
|
2012-12-03 18:57:57 +01:00
|
|
|
{
|
2013-01-17 14:06:06 +01:00
|
|
|
context_wrap(params, context, [](const ParametersParser& parser, Context& context) {
|
|
|
|
KeyList keys;
|
|
|
|
for (auto& param : parser)
|
|
|
|
{
|
|
|
|
KeyList param_keys = parse_keys(param);
|
|
|
|
keys.insert(keys.end(), param_keys.begin(), param_keys.end());
|
|
|
|
}
|
|
|
|
exec_keys(keys, context);
|
2013-01-17 13:58:09 +01:00
|
|
|
});
|
2013-01-17 14:06:06 +01:00
|
|
|
}
|
2013-01-17 13:58:09 +01:00
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void eval_string(CommandParameters params, Context& context)
|
2013-01-17 14:06:06 +01:00
|
|
|
{
|
|
|
|
context_wrap(params, context, [](const ParametersParser& parser, Context& context) {
|
|
|
|
String command;
|
|
|
|
for (auto& param : parser)
|
|
|
|
command += param + " ";
|
|
|
|
CommandManager::instance().execute(command, context);
|
|
|
|
});
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void menu(CommandParameters params, Context& context)
|
2012-05-18 07:20:46 +02:00
|
|
|
{
|
2012-12-15 19:11:22 +01:00
|
|
|
ParametersParser parser(params, { { "auto-single", false },
|
|
|
|
{ "select-cmds", false } });
|
2012-05-29 01:50:11 +02:00
|
|
|
|
2012-12-15 19:11:22 +01:00
|
|
|
const bool with_select_cmds = parser.has_option("select-cmds");
|
|
|
|
const size_t modulo = with_select_cmds ? 3 : 2;
|
|
|
|
|
|
|
|
const size_t count = parser.positional_count();
|
|
|
|
if (count == 0 or (count % modulo) != 0)
|
2012-05-18 07:20:46 +02:00
|
|
|
throw wrong_argument_count();
|
|
|
|
|
2012-12-15 19:11:22 +01:00
|
|
|
if (count == modulo and parser.has_option("auto-single"))
|
2012-05-29 01:50:11 +02:00
|
|
|
{
|
2012-08-01 14:27:34 +02:00
|
|
|
CommandManager::instance().execute(parser[1], context);
|
2012-05-29 01:50:11 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-30 21:14:28 +02:00
|
|
|
std::vector<String> choices;
|
2012-09-03 14:22:02 +02:00
|
|
|
std::vector<String> commands;
|
2012-12-15 19:11:22 +01:00
|
|
|
std::vector<String> select_cmds;
|
|
|
|
for (int i = 0; i < count; i += modulo)
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2012-08-30 21:14:28 +02:00
|
|
|
choices.push_back(parser[i]);
|
2012-09-03 14:22:02 +02:00
|
|
|
commands.push_back(parser[i+1]);
|
2012-12-15 19:11:22 +01:00
|
|
|
if (with_select_cmds)
|
|
|
|
select_cmds.push_back(parser[i+2]);
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|
2012-05-18 07:20:46 +02:00
|
|
|
|
2013-09-12 23:47:23 +02:00
|
|
|
context.client().menu(choices,
|
2012-12-14 19:38:11 +01:00
|
|
|
[=](int choice, MenuEvent event, Context& context) {
|
|
|
|
if (event == MenuEvent::Validate and choice >= 0 and choice < commands.size())
|
2012-09-03 14:22:02 +02:00
|
|
|
CommandManager::instance().execute(commands[choice], context);
|
2012-12-15 19:11:22 +01:00
|
|
|
if (event == MenuEvent::Select and choice >= 0 and choice < select_cmds.size())
|
|
|
|
CommandManager::instance().execute(select_cmds[choice], context);
|
2013-01-29 13:49:01 +01:00
|
|
|
});
|
2012-05-18 07:20:46 +02:00
|
|
|
}
|
|
|
|
|
2013-02-25 19:38:20 +01:00
|
|
|
static String assist(String message, CharCount maxWidth)
|
|
|
|
{
|
|
|
|
static const std::vector<String> assistant =
|
2013-03-01 14:29:28 +01:00
|
|
|
{ " ╭──╮ ",
|
|
|
|
" │ │ ",
|
|
|
|
" @ @ ╭",
|
|
|
|
" ││ ││ │",
|
|
|
|
" ││ ││ ╯",
|
|
|
|
" │╰─╯│ ",
|
|
|
|
" ╰───╯ ",
|
|
|
|
" " };
|
2013-02-25 19:38:20 +01:00
|
|
|
|
|
|
|
const CharCount maxBubbleWidth = maxWidth - assistant[0].char_length() - 6;
|
|
|
|
CharCount bubbleWidth = 0;
|
|
|
|
std::vector<String> lines;
|
|
|
|
{
|
|
|
|
using Utf8It = utf8::utf8_iterator<String::iterator>;
|
|
|
|
Utf8It word_begin{message.begin()};
|
|
|
|
Utf8It word_end{word_begin};
|
|
|
|
Utf8It end{message.end()};
|
|
|
|
CharCount col = 0;
|
|
|
|
String line;
|
|
|
|
while (word_begin != end)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
++word_end;
|
|
|
|
} while (word_end != end and not is_blank(*word_end) and not is_eol(*word_end));
|
|
|
|
|
|
|
|
col += word_end - word_begin;
|
|
|
|
if (col > maxBubbleWidth or *word_begin == '\n')
|
|
|
|
{
|
|
|
|
bubbleWidth = std::max(bubbleWidth, line.char_length());
|
|
|
|
lines.push_back(std::move(line));
|
|
|
|
line = "";
|
|
|
|
col = 0;
|
|
|
|
}
|
|
|
|
if (*word_begin != '\n')
|
2013-06-05 19:19:35 +02:00
|
|
|
line += String{word_begin.base(), word_end.base()};
|
2013-02-25 19:38:20 +01:00
|
|
|
word_begin = word_end;
|
|
|
|
}
|
|
|
|
if (not line.empty())
|
|
|
|
{
|
|
|
|
bubbleWidth = std::max(bubbleWidth, line.char_length());
|
|
|
|
lines.push_back(std::move(line));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String result;
|
2013-02-26 14:28:42 +01:00
|
|
|
LineCount lineCount{std::max<int>(assistant.size()-1, lines.size() + 2)};
|
2013-02-25 19:38:20 +01:00
|
|
|
for (LineCount i = 0; i < lineCount; ++i)
|
|
|
|
{
|
|
|
|
|
|
|
|
result += assistant[std::min((int)i, (int)assistant.size()-1)];
|
|
|
|
if (i == 0)
|
2013-04-02 14:03:39 +02:00
|
|
|
result += "╭─" + String(Codepoint{L'─'}, bubbleWidth) + "─╮";
|
2013-02-26 14:28:42 +01:00
|
|
|
else if (i < lines.size() + 1)
|
2013-02-25 19:38:20 +01:00
|
|
|
{
|
2013-02-26 14:28:42 +01:00
|
|
|
auto& line = lines[(int)i - 1];
|
2013-02-25 19:38:20 +01:00
|
|
|
const CharCount padding = std::max(bubbleWidth - line.char_length(), 0_char);
|
2013-02-26 14:28:42 +01:00
|
|
|
result += "│ " + line + String(' ', padding) + " │";
|
2013-02-25 19:38:20 +01:00
|
|
|
}
|
2013-02-26 14:28:42 +01:00
|
|
|
else if (i == lines.size() + 1)
|
2013-04-02 14:03:39 +02:00
|
|
|
result += "╰─" + String(Codepoint{L'─'}, bubbleWidth) + "─╯";
|
2013-02-25 19:38:20 +01:00
|
|
|
|
|
|
|
result += "\n";
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void info(CommandParameters params, Context& context)
|
2012-12-14 19:04:34 +01:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
ParametersParser parser(params, { { "anchor", true }, { "assist", false } },
|
|
|
|
ParametersParser::Flags::None, 0, 1);
|
2012-12-14 19:04:34 +01:00
|
|
|
|
|
|
|
context.ui().info_hide();
|
|
|
|
if (parser.positional_count() > 0)
|
2012-12-14 19:25:27 +01:00
|
|
|
{
|
2013-01-29 18:56:14 +01:00
|
|
|
MenuStyle style = MenuStyle::Prompt;
|
2013-02-25 19:38:20 +01:00
|
|
|
DisplayCoord dimensions = context.ui().dimensions();
|
|
|
|
DisplayCoord pos = { dimensions.line, 0 };
|
2013-01-29 18:56:14 +01:00
|
|
|
if (parser.has_option("anchor"))
|
|
|
|
{
|
|
|
|
style = MenuStyle::Inline;
|
2013-03-15 18:20:35 +01:00
|
|
|
const auto& sel = context.editor().main_selection();
|
2013-01-29 18:56:14 +01:00
|
|
|
auto it = sel.last();
|
|
|
|
String anchor = parser.option_value("anchor");
|
|
|
|
if (anchor == "left")
|
2013-05-24 14:25:50 +02:00
|
|
|
it = sel.min();
|
2013-01-29 18:56:14 +01:00
|
|
|
else if (anchor == "right")
|
2013-05-24 14:25:50 +02:00
|
|
|
it = sel.max();
|
2013-01-29 18:56:14 +01:00
|
|
|
else if (anchor != "cursor")
|
|
|
|
throw runtime_error("anchor param must be one of [left, right, cursor]");
|
|
|
|
pos = context.window().display_position(it);
|
|
|
|
}
|
2013-02-25 19:38:20 +01:00
|
|
|
const String& message = parser.has_option("assist") ? assist(parser[0], dimensions.column) : parser[0];
|
2013-04-04 18:47:34 +02:00
|
|
|
context.ui().info_show(message, pos, get_color("Information"), style);
|
2012-12-14 19:25:27 +01:00
|
|
|
}
|
2012-12-14 19:04:34 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void try_catch(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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void define_color_alias(CommandParameters params, Context& context)
|
2012-09-17 21:01:11 +02:00
|
|
|
{
|
2013-04-03 18:51:40 +02:00
|
|
|
ParametersParser parser(params, OptionMap{},
|
|
|
|
ParametersParser::Flags::None, 2, 2);
|
2012-09-17 21:01:11 +02:00
|
|
|
ColorRegistry::instance().register_alias(
|
2013-03-06 20:30:02 +01:00
|
|
|
parser[0], parser[1], true);
|
2012-09-17 21:01:11 +02:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void set_client_name(CommandParameters params, Context& context)
|
2012-12-03 18:57:23 +01:00
|
|
|
{
|
2013-04-03 18:51:40 +02:00
|
|
|
ParametersParser parser(params, OptionMap{},
|
|
|
|
ParametersParser::Flags::None, 1, 1);
|
2013-09-13 00:01:47 +02:00
|
|
|
if (ClientManager::instance().validate_client_name(params[0]))
|
|
|
|
context.client().set_name(params[0]);
|
|
|
|
else if (context.client().name() != params[0])
|
|
|
|
throw runtime_error("client name '" + params[0] + "' is not unique");
|
2012-12-03 18:57:23 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void set_register(CommandParameters params, Context& context)
|
2013-03-18 22:43:48 +01:00
|
|
|
{
|
|
|
|
if (params.size() != 2)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
|
|
|
if (params[0].length() != 1)
|
|
|
|
throw runtime_error("register names are single character");
|
|
|
|
RegisterManager::instance()[params[0][0]] = memoryview<String>(params[1]);
|
|
|
|
}
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
void change_working_directory(CommandParameters params, Context&)
|
2013-03-25 19:19:44 +01:00
|
|
|
{
|
|
|
|
if (params.size() != 1)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
|
|
|
if (chdir(parse_filename(params[0]).c_str()) != 0)
|
|
|
|
throw runtime_error("cannot change to directory " + params[0]);
|
|
|
|
}
|
|
|
|
|
2013-03-27 14:14:13 +01:00
|
|
|
template<typename GetRootGroup>
|
|
|
|
CommandCompleter group_rm_completer(GetRootGroup get_root_group)
|
|
|
|
{
|
2013-07-26 01:17:12 +02:00
|
|
|
return [=](const Context& context, CommandParameters params,
|
2013-03-27 14:14:13 +01:00
|
|
|
size_t token_to_complete, ByteCount pos_in_token) {
|
|
|
|
auto& root_group = get_root_group(context);
|
|
|
|
const String& arg = token_to_complete < params.size() ?
|
|
|
|
params[token_to_complete] : String();
|
|
|
|
if (token_to_complete == 1 and params[0] == "-group")
|
|
|
|
return root_group.complete_group_id(arg, pos_in_token);
|
|
|
|
else if (token_to_complete == 2 and params[0] == "-group")
|
|
|
|
return get_group(root_group, params[1]).complete_id(arg, pos_in_token);
|
|
|
|
return root_group.complete_id(arg, pos_in_token);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename FactoryRegistry, typename GetRootGroup>
|
|
|
|
CommandCompleter group_add_completer(GetRootGroup get_root_group)
|
|
|
|
{
|
2013-07-26 01:17:12 +02:00
|
|
|
return [=](const Context& context, CommandParameters params,
|
2013-03-27 14:14:13 +01:00
|
|
|
size_t token_to_complete, ByteCount pos_in_token) {
|
|
|
|
auto& root_group = get_root_group(context);
|
|
|
|
const String& arg = token_to_complete < params.size() ?
|
|
|
|
params[token_to_complete] : String();
|
|
|
|
if (token_to_complete == 1 and params[0] == "-group")
|
|
|
|
return root_group.complete_group_id(arg, pos_in_token);
|
|
|
|
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0] == "-group"))
|
|
|
|
return FactoryRegistry::instance().complete_name(arg, pos_in_token);
|
|
|
|
return CandidateList();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-02-18 18:57:08 +01:00
|
|
|
class RegisterRestorer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RegisterRestorer(char name, const Context& context)
|
|
|
|
: m_name(name)
|
|
|
|
{
|
|
|
|
memoryview<String> save = RegisterManager::instance()[name].values(context);
|
|
|
|
m_save = std::vector<String>(save.begin(), save.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
~RegisterRestorer()
|
|
|
|
{ RegisterManager::instance()[m_name] = m_save; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<String> m_save;
|
|
|
|
char m_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void exec_keys(const KeyList& keys, Context& context)
|
|
|
|
{
|
|
|
|
RegisterRestorer quote('"', context);
|
|
|
|
RegisterRestorer slash('/', context);
|
|
|
|
|
|
|
|
scoped_edition edition(context.editor());
|
|
|
|
|
2013-09-11 19:54:30 +02:00
|
|
|
for (auto& key : keys)
|
2013-09-12 23:47:23 +02:00
|
|
|
context.client().handle_key(key);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void register_commands()
|
|
|
|
{
|
|
|
|
CommandManager& cm = CommandManager::instance();
|
|
|
|
|
2013-07-26 01:17:12 +02:00
|
|
|
cm.register_commands({"nop"}, [](CommandParameters, Context&){});
|
2013-01-03 18:52:07 +01:00
|
|
|
|
2013-03-13 19:01:59 +01:00
|
|
|
PerArgumentCommandCompleter filename_completer({
|
|
|
|
[](const Context& context, const String& prefix, ByteCount cursor_pos)
|
2013-03-14 13:42:07 +01:00
|
|
|
{ return complete_filename(prefix, context.options()["ignored_files"].get<Regex>(), cursor_pos); }
|
2013-03-13 19:01:59 +01:00
|
|
|
});
|
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-10-11 00:41:48 +02:00
|
|
|
[](const Context& context, const String& prefix, ByteCount 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);
|
2012-12-28 14:07:35 +01:00
|
|
|
cm.register_commands({ "db", "delbuf" }, delete_buffer<false>, buffer_completer);
|
|
|
|
cm.register_commands({ "db!", "delbuf!" }, delete_buffer<true>, buffer_completer);
|
2013-04-22 13:48:18 +02:00
|
|
|
cm.register_commands({"nb", "namebuf"}, set_buffer_name);
|
2012-05-29 05:34:54 +02:00
|
|
|
|
2013-03-27 14:14:13 +01:00
|
|
|
auto get_highlighters = [](const Context& c) -> HighlighterGroup& { return c.window().highlighters(); };
|
|
|
|
auto get_filters = [](const Context& c) -> FilterGroup& { return c.window().filters(); };
|
|
|
|
cm.register_commands({ "ah", "addhl" }, add_highlighter, group_add_completer<HighlighterRegistry>(get_highlighters));
|
|
|
|
cm.register_commands({ "rh", "rmhl" }, rm_highlighter, group_rm_completer(get_highlighters));
|
|
|
|
cm.register_commands({ "af", "addfilter" }, add_filter, group_add_completer<FilterRegistry>(get_filters));
|
|
|
|
cm.register_commands({ "rf", "rmfilter" }, rm_filter, group_rm_completer(get_filters));
|
2012-05-29 05:34:54 +02:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_command("hook", add_hook);
|
2013-04-11 14:29:10 +02:00
|
|
|
cm.register_command("rmhooks", rm_hooks);
|
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("exec", exec_string);
|
2012-12-03 18:57:57 +01:00
|
|
|
cm.register_command("eval", eval_string);
|
2012-05-18 07:20:46 +02:00
|
|
|
cm.register_command("menu", menu);
|
2012-12-14 19:04:34 +01:00
|
|
|
cm.register_command("info", info);
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_command("try", try_catch);
|
2013-04-10 13:45:17 +02:00
|
|
|
cm.register_command("reg", set_register);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2012-07-31 14:22:57 +02:00
|
|
|
cm.register_command("def", define_command);
|
2013-04-10 13:45:17 +02:00
|
|
|
cm.register_command("decl", declare_option);
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
cm.register_command("echo", echo_message);
|
2013-04-10 13:45:17 +02:00
|
|
|
cm.register_command("debug", write_debug_message);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2013-03-22 13:44:40 +01:00
|
|
|
cm.register_commands({ "setg", "setglobal" }, set_global_option,
|
2012-05-07 05:13:34 +02:00
|
|
|
PerArgumentCommandCompleter({
|
2012-10-11 00:41:48 +02:00
|
|
|
[](const Context& context, const String& prefix, ByteCount cursor_pos)
|
2012-11-22 13:50:29 +01:00
|
|
|
{ return GlobalOptions::instance().complete_option_name(prefix, cursor_pos); }
|
2012-05-07 05:13:34 +02:00
|
|
|
}));
|
2013-03-22 13:44:40 +01:00
|
|
|
cm.register_commands({ "setb", "setbuffer" }, set_buffer_option,
|
2012-05-07 05:13:34 +02:00
|
|
|
PerArgumentCommandCompleter({
|
2012-10-11 00:41:48 +02:00
|
|
|
[](const Context& context, const String& prefix, ByteCount cursor_pos)
|
2012-11-22 13:50:29 +01:00
|
|
|
{ return context.buffer().options().complete_option_name(prefix, cursor_pos); }
|
2012-05-07 05:13:34 +02:00
|
|
|
}));
|
2013-03-22 13:44:40 +01:00
|
|
|
cm.register_commands({ "setw", "setwindow" }, set_window_option,
|
2012-05-07 05:13:34 +02:00
|
|
|
PerArgumentCommandCompleter({
|
2012-10-11 00:41:48 +02:00
|
|
|
[](const Context& context, const String& prefix, ByteCount cursor_pos)
|
2012-11-22 13:50:29 +01:00
|
|
|
{ return context.window().options().complete_option_name(prefix, cursor_pos); }
|
2012-05-07 05:13:34 +02:00
|
|
|
}));
|
2012-09-17 19:01:13 +02:00
|
|
|
|
2012-09-17 21:01:11 +02:00
|
|
|
cm.register_commands({"ca", "colalias"}, define_color_alias);
|
2013-04-22 13:48:18 +02:00
|
|
|
cm.register_commands({"nc", "nameclient"}, set_client_name);
|
2013-03-18 22:43:48 +01:00
|
|
|
|
2013-03-25 19:19:44 +01:00
|
|
|
cm.register_command("cd", change_working_directory, filename_completer);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
}
|