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"
|
2014-04-29 22:37:11 +02:00
|
|
|
#include "buffer_utils.hh"
|
2014-03-31 21:07:35 +02:00
|
|
|
#include "client.hh"
|
2013-04-09 19:39:03 +02:00
|
|
|
#include "client_manager.hh"
|
|
|
|
#include "command_manager.hh"
|
|
|
|
#include "completion.hh"
|
2014-12-23 14:34:21 +01:00
|
|
|
#include "containers.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"
|
2014-07-11 01:27:04 +02:00
|
|
|
#include "face_registry.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
#include "file.hh"
|
2012-11-23 13:40:20 +01:00
|
|
|
#include "highlighter.hh"
|
2013-03-29 19:31:06 +01:00
|
|
|
#include "highlighters.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"
|
2014-03-31 21:07:35 +02:00
|
|
|
#include "remote.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"
|
|
|
|
#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>
|
2014-10-13 14:12:33 +02:00
|
|
|
#include <unistd.h>
|
2015-01-12 20:55:58 +01:00
|
|
|
|
2015-01-14 20:16:32 +01:00
|
|
|
#if defined(__GLIBC__) || defined(__CYGWIN__)
|
2015-01-11 20:28:03 +01:00
|
|
|
#include <malloc.h>
|
2015-01-12 20:55:58 +01:00
|
|
|
#endif
|
2012-08-29 00:17:37 +02:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2014-11-01 20:31:13 +01:00
|
|
|
Buffer* open_fifo(StringView name, StringView filename, bool scroll)
|
2012-08-29 00:17:37 +02:00
|
|
|
{
|
2014-11-03 14:55:07 +01:00
|
|
|
int fd = open(parse_filename(filename).c_str(), O_RDONLY | O_NONBLOCK);
|
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
|
|
|
|
2014-11-01 20:31:13 +01:00
|
|
|
return create_fifo_buffer(name, fd, scroll);
|
2012-08-29 00:17:37 +02:00
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const PerArgumentCommandCompleter filename_completer({
|
|
|
|
[](const Context& context, CompletionFlags flags, const String& prefix, ByteCount cursor_pos)
|
2014-05-18 15:14:37 +02:00
|
|
|
{ return Completions{ 0_byte, cursor_pos,
|
2014-02-14 03:21:06 +01:00
|
|
|
complete_filename(prefix,
|
|
|
|
context.options()["ignored_files"].get<Regex>(),
|
|
|
|
cursor_pos) }; }
|
|
|
|
});
|
|
|
|
|
2014-12-23 18:42:17 +01:00
|
|
|
static CandidateList complete_buffer_name(StringView prefix, ByteCount cursor_pos)
|
|
|
|
{
|
2015-01-05 20:33:33 +01:00
|
|
|
prefix = prefix.substr(0, cursor_pos);
|
|
|
|
const bool include_dirs = contains(prefix, '/');
|
|
|
|
CandidateList prefix_result, subsequence_result;
|
|
|
|
for (auto& buffer : BufferManager::instance())
|
|
|
|
{
|
2014-12-23 18:42:17 +01:00
|
|
|
String name = buffer->display_name();
|
2015-01-05 20:33:33 +01:00
|
|
|
StringView match_name = name;
|
2014-12-23 18:42:17 +01:00
|
|
|
if (not include_dirs and buffer->flags() & Buffer::Flags::File)
|
|
|
|
{
|
|
|
|
ByteCount pos = name.find_last_of('/');
|
|
|
|
if (pos != (int)String::npos)
|
2015-01-05 20:33:33 +01:00
|
|
|
match_name = name.substr(pos+1);
|
2014-12-23 18:42:17 +01:00
|
|
|
}
|
2015-01-05 20:33:33 +01:00
|
|
|
if (prefix_match(match_name, prefix))
|
|
|
|
prefix_result.push_back(name);
|
|
|
|
if (subsequence_match(name, prefix))
|
|
|
|
subsequence_result.push_back(name);
|
|
|
|
}
|
|
|
|
return prefix_result.empty() ? subsequence_result : prefix_result;
|
2014-12-23 18:42:17 +01:00
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const PerArgumentCommandCompleter buffer_completer({
|
|
|
|
[](const Context& context, CompletionFlags flags, const String& prefix, ByteCount cursor_pos)
|
2014-12-23 18:42:17 +01:00
|
|
|
{ return Completions{ 0_byte, cursor_pos, complete_buffer_name(prefix, cursor_pos) }; }
|
2014-02-14 03:21:06 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
const ParameterDesc no_params{
|
|
|
|
SwitchMap{}, ParameterDesc::Flags::None, 0, 0
|
|
|
|
};
|
|
|
|
|
|
|
|
const ParameterDesc single_name_param{
|
|
|
|
SwitchMap{}, ParameterDesc::Flags::None, 1, 1
|
|
|
|
};
|
|
|
|
|
|
|
|
const ParameterDesc single_optional_name_param{
|
|
|
|
SwitchMap{}, ParameterDesc::Flags::None, 0, 1
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-10-30 00:22:54 +01:00
|
|
|
static constexpr auto scopes = { "global", "buffer", "window" };
|
|
|
|
|
2014-11-23 20:49:59 +01:00
|
|
|
Scope* get_scope_ifp(StringView scope, const Context& context)
|
2014-10-30 15:00:42 +01:00
|
|
|
{
|
|
|
|
if (prefix_match("global", scope))
|
|
|
|
return &GlobalScope::instance();
|
|
|
|
else if (prefix_match("buffer", scope))
|
|
|
|
return &context.buffer();
|
|
|
|
else if (prefix_match("window", scope))
|
|
|
|
return &context.window();
|
|
|
|
else if (prefix_match(scope, "buffer="))
|
|
|
|
return &BufferManager::instance().get_buffer(scope.substr(7_byte));
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:49:59 +01:00
|
|
|
Scope& get_scope(StringView scope, const Context& context)
|
2014-10-30 15:00:42 +01:00
|
|
|
{
|
|
|
|
if (auto s = get_scope_ifp(scope, context))
|
|
|
|
return *s;
|
|
|
|
throw runtime_error("error: no such scope " + scope);
|
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
struct CommandDesc
|
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
const char* alias;
|
|
|
|
const char* docstring;
|
|
|
|
ParameterDesc params;
|
|
|
|
CommandFlags flags;
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper helper;
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter completer;
|
|
|
|
void (*func)(const ParametersParser&, Context&);
|
|
|
|
};
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
template<bool force_reload>
|
2014-02-08 02:02:58 +01:00
|
|
|
void edit(const ParametersParser& parser, Context& context)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2014-07-08 20:24:51 +02:00
|
|
|
if (parser.positional_count() == 0 and not force_reload)
|
|
|
|
throw wrong_argument_count();
|
|
|
|
|
|
|
|
auto& name = parser.positional_count() > 0 ? parser[0]
|
|
|
|
: context.buffer().name();
|
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"))
|
2014-05-02 19:58:04 +02:00
|
|
|
buffer = open_fifo(name, parser.option_value("fifo"), parser.has_option("scroll"));
|
2012-08-07 23:20:11 +02:00
|
|
|
else
|
2014-07-31 23:10:01 +02:00
|
|
|
{
|
|
|
|
buffer = create_buffer_from_file(name);
|
|
|
|
if (not buffer)
|
|
|
|
{
|
|
|
|
if (parser.has_option("existing"))
|
|
|
|
throw runtime_error("unable to open " + name);
|
|
|
|
|
|
|
|
context.print_status({ "new file " + name, get_face("StatusLine") });
|
|
|
|
buffer = new Buffer(name, Buffer::Flags::File | Buffer::Flags::New);
|
|
|
|
}
|
|
|
|
}
|
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())
|
2013-12-20 21:10:08 +01:00
|
|
|
context.change_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
|
|
|
|
2014-05-13 00:25:15 +02:00
|
|
|
auto& buffer = context.buffer();
|
|
|
|
context.selections() = { buffer, buffer.clamp({ line, column }) };
|
2012-11-07 14:04:47 +01:00
|
|
|
if (context.has_window())
|
2014-01-28 20:05:49 +01:00
|
|
|
context.window().center_line(context.selections().main().cursor().line);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc edit_params{
|
2014-07-31 23:10:01 +02:00
|
|
|
SwitchMap{ { "existing", { false, "fail if the file does not exists, do not open a new file" } },
|
|
|
|
{ "scratch", { false, "create a scratch buffer, not linked to a file" } },
|
2014-05-02 19:58:04 +02:00
|
|
|
{ "fifo", { true, "create a buffer reading its content from a named fifo" } },
|
|
|
|
{ "scroll", { false, "place the initial cursor so that the fifo will scroll to show new data" } } },
|
2014-07-08 20:24:51 +02:00
|
|
|
ParameterDesc::Flags::None, 0, 3
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const CommandDesc edit_cmd = {
|
|
|
|
"edit",
|
|
|
|
"e",
|
|
|
|
"edit <switches> <filename>: open the given filename in a buffer",
|
|
|
|
edit_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
filename_completer,
|
|
|
|
edit<false>
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc force_edit_cmd = {
|
|
|
|
"edit!",
|
|
|
|
"e!",
|
|
|
|
"edit! <switches> <filename>: open the given filename in a buffer, force reload if needed",
|
|
|
|
edit_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
filename_completer,
|
|
|
|
edit<true>
|
|
|
|
};
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2014-02-08 02:02:58 +01:00
|
|
|
void write_buffer(const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2012-08-11 11:48:54 +02:00
|
|
|
Buffer& buffer = context.buffer();
|
2012-08-07 23:20:53 +02:00
|
|
|
|
2014-02-08 02:02:58 +01:00
|
|
|
if (parser.positional_count() == 0 and !(buffer.flags() & Buffer::Flags::File))
|
2012-11-20 19:47:56 +01:00
|
|
|
throw runtime_error("cannot write a non file buffer without a filename");
|
2012-08-07 23:20:53 +02:00
|
|
|
|
2014-02-08 02:02:58 +01:00
|
|
|
String filename = parser.positional_count() == 0 ? buffer.name()
|
|
|
|
: parse_filename(parser[0]);
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
write_buffer_to_file(buffer, filename);
|
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc write_cmd = {
|
|
|
|
"write",
|
|
|
|
"w",
|
|
|
|
"write [filename]: write the current buffer to it's file or to [filename] if specified",
|
|
|
|
single_optional_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
filename_completer,
|
|
|
|
write_buffer,
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
2012-08-14 14:20:18 +02:00
|
|
|
|
2014-07-01 10:56:11 +02:00
|
|
|
void write_all_buffers()
|
|
|
|
{
|
|
|
|
for (auto& buffer : BufferManager::instance())
|
|
|
|
{
|
|
|
|
if ((buffer->flags() & Buffer::Flags::File) and buffer->is_modified())
|
|
|
|
write_buffer_to_file(*buffer, buffer->name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc writeall_cmd = {
|
|
|
|
"writeall",
|
|
|
|
"wa",
|
|
|
|
"write all buffers that are associated to a file",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
2014-07-01 10:56:11 +02:00
|
|
|
[](const ParametersParser&, Context&){ write_all_buffers(); }
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
template<bool force>
|
2014-07-01 10:56:11 +02:00
|
|
|
void quit()
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2012-10-30 14:00:44 +01:00
|
|
|
if (not force and ClientManager::instance().count() == 1)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> names;
|
2012-05-07 05:13:34 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc quit_cmd = {
|
|
|
|
"quit",
|
|
|
|
"q",
|
|
|
|
"quit current client, and the kakoune session if the client is the last (if not running in daemon mode)",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
2014-07-01 10:56:11 +02:00
|
|
|
[](const ParametersParser&, Context&){ quit<false>(); }
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc force_quit_cmd = {
|
|
|
|
"quit!",
|
|
|
|
"q!",
|
|
|
|
"quit current client, and the kakoune session if the client is the last (if not running in daemon mode)\n"
|
|
|
|
"force quit even if the client is the last and some buffers are not saved.",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
2014-07-01 10:56:11 +02:00
|
|
|
[](const ParametersParser&, Context&){ quit<true>(); }
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc write_quit_cmd = {
|
|
|
|
"wq",
|
|
|
|
nullptr,
|
|
|
|
"write current buffer and quit current client",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
write_buffer(parser, context);
|
2014-07-01 10:56:11 +02:00
|
|
|
quit<false>();
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
|
|
|
};
|
2012-11-07 14:04:47 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc force_write_quit_cmd = {
|
|
|
|
"wq!",
|
|
|
|
nullptr,
|
|
|
|
"write current buffer and quit current client, even if other buffers are not saved",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
2012-11-07 14:04:47 +01:00
|
|
|
{
|
2014-02-14 03:21:06 +01:00
|
|
|
write_buffer(parser, context);
|
2014-07-01 10:56:11 +02:00
|
|
|
quit<true>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const CommandDesc writeall_quit_cmd = {
|
|
|
|
"waq",
|
|
|
|
nullptr,
|
|
|
|
"write all buffers associated to a file and quit current client",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-07-01 10:56:11 +02:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
write_all_buffers();
|
|
|
|
quit<false>();
|
2012-11-07 14:04:47 +01:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2012-05-29 00:51:12 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc buffer_cmd = {
|
|
|
|
"buffer",
|
|
|
|
"b",
|
|
|
|
"buffer <name>: set buffer to edit in current client",
|
|
|
|
single_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
buffer_completer,
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
Buffer& buffer = BufferManager::instance().get_buffer(parser[0]);
|
|
|
|
BufferManager::instance().set_last_used_buffer(buffer);
|
2014-02-08 02:02:58 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
if (&buffer != &context.buffer())
|
|
|
|
{
|
|
|
|
context.push_jump();
|
|
|
|
context.change_buffer(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2012-12-28 14:07:35 +01:00
|
|
|
template<bool force>
|
2014-02-08 02:02:58 +01:00
|
|
|
void delete_buffer(const ParametersParser& parser, Context& context)
|
2012-05-29 00:51:12 +02:00
|
|
|
{
|
|
|
|
BufferManager& manager = BufferManager::instance();
|
2014-02-08 02:02:58 +01:00
|
|
|
Buffer& buffer = parser.positional_count() == 0 ? context.buffer() : manager.get_buffer(parser[0]);
|
2013-03-21 19:09:31 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc delbuf_cmd = {
|
|
|
|
"delbuf",
|
|
|
|
"db",
|
|
|
|
"delbuf [name]: delete the current buffer or the buffer named <name> if given",
|
|
|
|
single_optional_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
buffer_completer,
|
|
|
|
delete_buffer<false>
|
|
|
|
};
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc force_delbuf_cmd = {
|
|
|
|
"delbuf!",
|
|
|
|
"db!",
|
|
|
|
"delbuf! [name]: delete the current buffer or the buffer named <name> if given, even if the buffer is unsaved",
|
|
|
|
single_optional_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
buffer_completer,
|
2014-05-13 20:48:16 +02:00
|
|
|
delete_buffer<true>
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const CommandDesc namebuf_cmd = {
|
|
|
|
"namebuf",
|
|
|
|
nullptr,
|
|
|
|
"namebuf <name>: change current buffer name",
|
|
|
|
single_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
if (not context.buffer().set_name(parser[0]))
|
|
|
|
throw runtime_error("unable to change buffer name to " + parser[0]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
Completions complete_highlighter(const Context& context,
|
|
|
|
StringView arg, ByteCount pos_in_token, bool only_group)
|
2013-04-22 13:48:18 +02:00
|
|
|
{
|
2014-06-15 17:04:38 +02:00
|
|
|
const bool shared = not arg.empty() and arg[0] == '/';
|
|
|
|
if (shared)
|
|
|
|
{
|
|
|
|
auto& group = DefinedHighlighters::instance();
|
2014-10-22 01:20:09 +02:00
|
|
|
return offset_pos(group.complete_child(arg.substr(1_byte), pos_in_token-1, only_group), 1);
|
2014-06-15 17:04:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto& group = context.window().highlighters();
|
2014-10-22 01:20:09 +02:00
|
|
|
return group.complete_child(arg, pos_in_token, only_group);
|
2014-06-15 17:04:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Completions rm_highlighter_completer(
|
|
|
|
const Context& context, CompletionFlags flags, CommandParameters params,
|
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
|
|
|
{
|
|
|
|
const String& arg = params[token_to_complete];
|
|
|
|
if (token_to_complete == 0 and not arg.empty() and arg.front() == '/')
|
|
|
|
{
|
|
|
|
auto& group = DefinedHighlighters::instance();
|
2014-10-22 01:20:09 +02:00
|
|
|
return offset_pos(group.complete_child(arg.substr(1_byte), pos_in_token-1, false), 1);
|
2014-06-15 17:04:38 +02:00
|
|
|
}
|
|
|
|
else if (token_to_complete == 0)
|
2014-10-22 01:20:09 +02:00
|
|
|
return context.window().highlighters().complete_child(arg, pos_in_token, false);
|
2014-06-15 17:04:38 +02:00
|
|
|
return {};
|
2013-04-22 13:48:18 +02:00
|
|
|
}
|
|
|
|
|
2014-06-15 17:04:38 +02:00
|
|
|
Completions add_highlighter_completer(
|
|
|
|
const Context& context, CompletionFlags flags, CommandParameters params,
|
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
2012-12-09 18:58:58 +01:00
|
|
|
{
|
2014-06-15 17:04:38 +02:00
|
|
|
StringView arg = params[token_to_complete];
|
|
|
|
if (token_to_complete == 1 and params[0] == "-group")
|
2014-10-22 01:20:09 +02:00
|
|
|
return complete_highlighter(context, params[1], pos_in_token, true);
|
2014-06-15 17:04:38 +02:00
|
|
|
else if (token_to_complete == 0 or (token_to_complete == 2 and params[0] == "-group"))
|
2014-12-23 23:15:53 +01:00
|
|
|
return { 0_byte, arg.length(), complete(arg, pos_in_token, transformed(HighlighterRegistry::instance(), HighlighterRegistry::get_id)) };
|
2014-06-15 17:04:38 +02:00
|
|
|
return Completions{};
|
2012-12-09 18:58:58 +01:00
|
|
|
}
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
Highlighter& get_highlighter(const Context& context, StringView path)
|
2014-06-15 17:04:38 +02:00
|
|
|
{
|
|
|
|
if (path.empty())
|
|
|
|
throw runtime_error("group path should not be empty");
|
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
Highlighter* root = nullptr;
|
2014-06-15 17:04:38 +02:00
|
|
|
if (path[0] == '/')
|
|
|
|
{
|
2014-10-22 01:20:09 +02:00
|
|
|
root = &DefinedHighlighters::instance();
|
2014-06-15 17:04:38 +02:00
|
|
|
path = path.substr(1_byte);
|
|
|
|
}
|
|
|
|
else
|
2014-10-22 01:20:09 +02:00
|
|
|
root = &context.window().highlighters();
|
2014-06-15 17:04:38 +02:00
|
|
|
|
|
|
|
if (path.back() == '/')
|
|
|
|
path = path.substr(0_byte, path.length() - 1);
|
|
|
|
|
|
|
|
if (not path.empty())
|
2014-10-22 01:20:09 +02:00
|
|
|
return root->get_child(path);
|
|
|
|
return *root;
|
2014-06-15 17:04:38 +02:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
|
|
|
|
const CommandDesc add_highlighter_cmd = {
|
|
|
|
"addhl",
|
|
|
|
"ah",
|
2014-06-12 22:52:23 +02:00
|
|
|
"addhl <scope>/<group>/<id> <type> <type params>...: add an highlighter\n"
|
|
|
|
"<scope> can be shared or window",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{
|
2014-06-12 22:52:23 +02:00
|
|
|
SwitchMap{ { "group", { true, "specify the group in which to put the highlighter" } } },
|
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart, 1 },
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandFlags::None,
|
2015-02-19 14:54:03 +01:00
|
|
|
[](const Context& context, CommandParameters params) -> String
|
|
|
|
{
|
|
|
|
if (params.size() > 0)
|
|
|
|
{
|
|
|
|
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
|
|
|
auto it = registry.find(params[0]);
|
|
|
|
if (it != registry.end())
|
|
|
|
return params[0] + ":\n" + indent(it->second.docstring);
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
},
|
2014-06-15 17:04:38 +02:00
|
|
|
add_highlighter_completer,
|
2014-02-14 03:21:06 +01:00
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
HighlighterRegistry& registry = HighlighterRegistry::instance();
|
2014-02-08 02:02:58 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
auto begin = parser.begin();
|
2014-06-12 22:52:23 +02:00
|
|
|
const String& name = *begin++;
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> highlighter_params;
|
2014-06-12 22:52:23 +02:00
|
|
|
for (; begin != parser.end(); ++begin)
|
2014-02-14 03:21:06 +01:00
|
|
|
highlighter_params.push_back(*begin);
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2014-06-15 17:04:38 +02:00
|
|
|
auto& group = (parser.has_option("group")) ?
|
2014-10-22 01:20:09 +02:00
|
|
|
get_highlighter(context, parser.option_value("group"))
|
2014-06-15 17:04:38 +02:00
|
|
|
: context.window().highlighters();
|
2014-12-23 23:15:53 +01:00
|
|
|
auto it = registry.find(name);
|
|
|
|
if (it == registry.end())
|
|
|
|
throw runtime_error("No such highlighter factory '" + name + "'");
|
2015-02-19 14:54:03 +01:00
|
|
|
group.add_child(it->second.factory(highlighter_params));
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
|
|
|
};
|
2013-12-03 23:03:10 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc rm_highlighter_cmd = {
|
|
|
|
"rmhl",
|
|
|
|
"rh",
|
2014-06-15 17:04:38 +02:00
|
|
|
"rmhl <path>: remove highlighter <name>",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{
|
2014-06-15 17:04:38 +02:00
|
|
|
SwitchMap{},
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc::Flags::None, 1, 1
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-06-15 17:04:38 +02:00
|
|
|
rm_highlighter_completer,
|
2014-02-14 03:21:06 +01:00
|
|
|
[](const ParametersParser& parser, Context& context)
|
2013-12-03 23:03:10 +01:00
|
|
|
{
|
2014-06-15 17:04:38 +02:00
|
|
|
StringView path = parser[0];
|
|
|
|
auto sep_it = find(reversed(path), '/');
|
|
|
|
auto& group = sep_it != path.rend() ?
|
2014-10-22 01:20:09 +02:00
|
|
|
get_highlighter(context, {path.begin(), sep_it.base()-1})
|
2014-06-15 17:04:38 +02:00
|
|
|
: context.window().highlighters();
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2014-10-22 01:20:09 +02:00
|
|
|
group.remove_child({sep_it.base(), path.end()});
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
2012-05-25 07:07:37 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc add_hook_cmd = {
|
|
|
|
"hook",
|
|
|
|
nullptr,
|
2014-06-06 14:58:35 +02:00
|
|
|
"hook <switches> <scope> <hook_name> <command>: add <command> in <scope> to be executed on hook <hook_name>\n"
|
|
|
|
"scope can be: \n"
|
|
|
|
" * global: hook is executed for any buffer or window\n"
|
|
|
|
" * buffer: hook is executed only for the current buffer\n"
|
|
|
|
" (and any window for that buffer)\n"
|
|
|
|
" * window: hook is executed only for the current window\n",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{
|
2014-06-16 21:42:12 +02:00
|
|
|
SwitchMap{ { "group", { true, "set hook group, see rmhooks" } } },
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc::Flags::None, 4, 4
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
[](const Context& context, CompletionFlags flags,
|
2014-07-21 22:14:32 +02:00
|
|
|
CommandParameters params, size_t token_to_complete,
|
|
|
|
ByteCount pos_in_token) -> Completions
|
2014-02-14 03:21:06 +01:00
|
|
|
{
|
|
|
|
if (token_to_complete == 0)
|
2014-07-21 22:14:32 +02:00
|
|
|
return { 0_byte, params[0].length(),
|
2014-12-23 18:39:12 +01:00
|
|
|
complete(params[0], pos_in_token, scopes) };
|
2014-02-14 03:21:06 +01:00
|
|
|
else if (token_to_complete == 3)
|
|
|
|
{
|
|
|
|
auto& cm = CommandManager::instance();
|
|
|
|
return cm.complete(context, flags, params[3], pos_in_token);
|
|
|
|
}
|
2014-07-21 22:14:32 +02:00
|
|
|
return {};
|
2014-02-14 03:21:06 +01:00
|
|
|
},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
// copy so that the lambda gets a copy as well
|
|
|
|
Regex regex(parser[2].begin(), parser[2].end());
|
|
|
|
String command = parser[3];
|
2014-10-20 20:18:38 +02:00
|
|
|
auto hook_func = [=](StringView param, Context& context) {
|
2014-12-05 14:47:09 +01:00
|
|
|
if (context.user_hooks_support().is_disabled())
|
2014-06-21 13:08:19 +02:00
|
|
|
return;
|
|
|
|
|
2014-12-05 15:01:07 +01:00
|
|
|
// Do not let hooks touch prompt history
|
|
|
|
ScopedDisable disable_history{context.history_support()};
|
|
|
|
|
2014-10-13 14:12:33 +02:00
|
|
|
if (regex_match(param.begin(), param.end(), regex))
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandManager::instance().execute(command, context, {},
|
2014-11-13 23:17:10 +01:00
|
|
|
{ { "hook_param", param } });
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2014-06-16 21:42:12 +02:00
|
|
|
StringView group;
|
|
|
|
if (parser.has_option("group"))
|
|
|
|
group = parser.option_value("group");
|
2014-10-30 15:00:42 +01:00
|
|
|
get_scope(parser[0], context).hooks().add_hook(parser[1], group, hook_func);
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc rm_hook_cmd = {
|
|
|
|
"rmhooks",
|
|
|
|
nullptr,
|
2014-10-30 15:00:42 +01:00
|
|
|
"rmhooks <scope> <group>: remove all hooks whose group is <group>",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::None, 2, 2 },
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-07-21 22:14:32 +02:00
|
|
|
[](const Context& context, CompletionFlags flags,
|
|
|
|
CommandParameters params, size_t token_to_complete,
|
|
|
|
ByteCount pos_in_token) -> Completions
|
|
|
|
{
|
|
|
|
if (token_to_complete == 0)
|
|
|
|
return { 0_byte, params[0].length(),
|
2014-12-23 18:39:12 +01:00
|
|
|
complete(params[0], pos_in_token, scopes) };
|
2014-07-21 22:14:32 +02:00
|
|
|
else if (token_to_complete == 1)
|
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
if (auto scope = get_scope_ifp(params[0], context))
|
2014-07-21 22:14:32 +02:00
|
|
|
return { 0_byte, params[0].length(),
|
2014-10-30 15:00:42 +01:00
|
|
|
scope->hooks().complete_hook_group(params[1], pos_in_token) };
|
2014-07-21 22:14:32 +02:00
|
|
|
}
|
|
|
|
return {};
|
|
|
|
},
|
2014-02-14 03:21:06 +01:00
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
get_scope(parser[0], context).hooks().remove_hooks(parser[1]);
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
|
|
|
};
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> params_to_shell(const ParametersParser& parser)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> vars;
|
2014-02-08 02:02:58 +01:00
|
|
|
for (size_t i = 0; i < parser.positional_count(); ++i)
|
|
|
|
vars.push_back(parser[i]);
|
|
|
|
return vars;
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2014-02-08 02:02:58 +01:00
|
|
|
void define_command(const ParametersParser& parser, Context& context)
|
|
|
|
{
|
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");
|
|
|
|
|
2013-11-12 20:38:19 +01:00
|
|
|
CommandFlags flags = CommandFlags::None;
|
|
|
|
if (parser.has_option("hidden"))
|
|
|
|
flags = CommandFlags::Hidden;
|
|
|
|
|
2014-02-19 04:40:52 +01:00
|
|
|
String docstring;
|
|
|
|
if (parser.has_option("docstring"))
|
|
|
|
docstring = parser.option_value("docstring");
|
|
|
|
|
2012-08-01 14:27:34 +02:00
|
|
|
String commands = parser[1];
|
2012-05-25 07:07:37 +02:00
|
|
|
Command cmd;
|
2014-02-08 02:02:58 +01:00
|
|
|
ParameterDesc desc;
|
2012-09-09 17:10:53 +02:00
|
|
|
if (parser.has_option("shell-params"))
|
|
|
|
{
|
2014-03-20 20:50:42 +01:00
|
|
|
desc = ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::SwitchesAsPositional };
|
2014-02-08 02:02:58 +01:00
|
|
|
cmd = [=](const ParametersParser& parser, Context& context) {
|
|
|
|
CommandManager::instance().execute(commands, context, params_to_shell(parser));
|
2012-09-09 17:10:53 +02:00
|
|
|
};
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
else
|
|
|
|
{
|
2014-03-20 20:50:42 +01:00
|
|
|
desc = ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::SwitchesAsPositional, 0, 0 };
|
2014-02-08 02:02:58 +01:00
|
|
|
cmd = [=](const ParametersParser& parser, Context& context) {
|
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-11-04 22:53:10 +01:00
|
|
|
completer = [](const Context& context, CompletionFlags flags,
|
|
|
|
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
|
|
|
{
|
2014-01-26 17:14:02 +01:00
|
|
|
const String& prefix = params[token_to_complete];
|
|
|
|
auto& ignored_files = context.options()["ignored_files"].get<Regex>();
|
|
|
|
return Completions{ 0_byte, prefix.length(),
|
|
|
|
complete_filename(prefix, ignored_files,
|
|
|
|
pos_in_token) };
|
2012-09-12 14:21:42 +02:00
|
|
|
};
|
|
|
|
}
|
2014-04-07 22:44:17 +02:00
|
|
|
if (parser.has_option("client-completion"))
|
|
|
|
{
|
|
|
|
completer = [](const Context& context, CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
|
|
|
{
|
|
|
|
const String& prefix = params[token_to_complete];
|
|
|
|
auto& cm = ClientManager::instance();
|
|
|
|
return Completions{ 0_byte, prefix.length(),
|
|
|
|
cm.complete_client_name(prefix, pos_in_token) };
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (parser.has_option("buffer-completion"))
|
|
|
|
{
|
|
|
|
completer = [](const Context& context, CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
|
|
|
{
|
|
|
|
const String& prefix = params[token_to_complete];
|
|
|
|
return Completions{ 0_byte, prefix.length(),
|
2014-12-23 18:42:17 +01:00
|
|
|
complete_buffer_name(prefix, pos_in_token) };
|
2014-04-07 22:44:17 +02:00
|
|
|
};
|
|
|
|
}
|
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-11-04 22:53:10 +01:00
|
|
|
completer = [=](const Context& context, CompletionFlags flags,
|
|
|
|
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-11-04 22:53:10 +01:00
|
|
|
if (flags == CompletionFlags::Fast) // no shell on fast completion
|
2014-01-26 17:14:02 +01:00
|
|
|
return Completions{};
|
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);
|
2014-10-19 17:27:36 +02:00
|
|
|
return Completions{ 0_byte, params[token_to_complete].length(), split(output, '\n', 0) };
|
2012-05-29 07:22:18 +02:00
|
|
|
};
|
|
|
|
}
|
2014-06-06 01:17:15 +02:00
|
|
|
|
|
|
|
auto& cm = CommandManager::instance();
|
2015-02-08 20:04:20 +01:00
|
|
|
cm.register_command(cmd_name, cmd, std::move(docstring), desc, flags, CommandHelper{}, completer);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc define_command_cmd = {
|
|
|
|
"def",
|
|
|
|
nullptr,
|
|
|
|
"def <switches> <name> <commands>: define a command named <name> corresponding to <commands>",
|
|
|
|
ParameterDesc{
|
2014-06-06 14:57:23 +02:00
|
|
|
SwitchMap{ { "shell-params", { false, "pass parameters to each shell escape as $0..$N" } },
|
|
|
|
{ "allow-override", { false, "allow overriding an existing command" } },
|
|
|
|
{ "hidden", { false, "do not display the command in completion candidates" } },
|
|
|
|
{ "docstring", { true, "define the documentation string for command" } },
|
2014-02-14 03:21:06 +01:00
|
|
|
{ "file-completion", { false, "complete parameters using filename completion" } },
|
2014-04-07 22:44:17 +02:00
|
|
|
{ "client-completion", { false, "complete parameters using client name completion" } },
|
|
|
|
{ "buffer-completion", { false, "complete parameters using buffer name completion" } },
|
2014-06-06 14:57:23 +02:00
|
|
|
{ "shell-completion", { true, "complete the parameters using the given shell-script" } } },
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc::Flags::None,
|
|
|
|
2, 2
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
define_command
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-10-30 00:22:54 +01:00
|
|
|
const CommandDesc alias_cmd = {
|
|
|
|
"alias",
|
|
|
|
nullptr,
|
|
|
|
"alias <scope> <alias> <command>: define a command alias in given scope",
|
|
|
|
ParameterDesc{SwitchMap{}, ParameterDesc::Flags::None, 3, 3},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-10-30 00:22:54 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
AliasRegistry& aliases = get_scope(parser[0], context).aliases();
|
2014-10-30 00:22:54 +01:00
|
|
|
aliases.add_alias(parser[1], parser[2]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const CommandDesc unalias_cmd = {
|
|
|
|
"unalias",
|
|
|
|
nullptr,
|
|
|
|
"unalias <scope> <alias> [<expected>]: remove a command alias in given scope\n"
|
|
|
|
"if <expected> is specified, the alias is removed only if its value is <expected>",
|
|
|
|
ParameterDesc{SwitchMap{}, ParameterDesc::Flags::None, 2, 3},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-10-30 00:22:54 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
AliasRegistry& aliases = get_scope(parser[0], context).aliases();
|
2014-10-30 00:22:54 +01:00
|
|
|
if (parser.positional_count() == 3 and
|
|
|
|
aliases[parser[1]] != parser[2])
|
|
|
|
return;
|
|
|
|
aliases.remove_alias(parser[1]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc echo_cmd = {
|
|
|
|
"echo",
|
|
|
|
nullptr,
|
|
|
|
"echo <params>...: display given parameters in the status line",
|
|
|
|
ParameterDesc{
|
2014-03-31 21:07:02 +02:00
|
|
|
SwitchMap{ { "color", { true, "set message color" } },
|
|
|
|
{ "debug", { false, "write to debug buffer instead of status line" } } },
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2015-01-17 23:55:48 +01:00
|
|
|
String message = join(parser, ' ', false);
|
2014-03-31 21:07:02 +02:00
|
|
|
if (parser.has_option("debug"))
|
|
|
|
write_debug(message);
|
|
|
|
else
|
|
|
|
{
|
2014-07-11 01:27:04 +02:00
|
|
|
auto face = get_face(parser.has_option("color") ?
|
|
|
|
parser.option_value("color") : "StatusLine");
|
|
|
|
context.print_status({ std::move(message), face } );
|
2014-03-31 21:07:02 +02:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc debug_cmd = {
|
|
|
|
"debug",
|
|
|
|
nullptr,
|
2014-06-06 14:58:35 +02:00
|
|
|
"debug <command>: write some debug informations in the debug buffer\n"
|
2014-09-22 20:19:34 +02:00
|
|
|
" existing commands: info, buffers",
|
2014-03-31 21:07:35 +02:00
|
|
|
ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::SwitchesOnlyAtStart, 1 },
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2015-01-06 20:06:53 +01:00
|
|
|
PerArgumentCommandCompleter({
|
|
|
|
[](const Context& context, CompletionFlags flags,
|
|
|
|
const String& prefix, ByteCount cursor_pos) -> Completions {
|
2015-01-15 14:54:38 +01:00
|
|
|
auto c = {"info", "buffers", "options", "memory", "shared-strings"};
|
2015-01-06 20:06:53 +01:00
|
|
|
return { 0_byte, cursor_pos, complete(prefix, cursor_pos, c) };
|
|
|
|
} }),
|
2014-11-26 14:27:26 +01:00
|
|
|
[](const ParametersParser& parser, Context& context)
|
2013-12-04 01:27:19 +01:00
|
|
|
{
|
2014-03-31 21:07:35 +02:00
|
|
|
if (parser[0] == "info")
|
|
|
|
{
|
|
|
|
write_debug("pid: " + to_string(getpid()));
|
|
|
|
write_debug("session: " + Server::instance().session());
|
|
|
|
}
|
2014-11-28 14:18:08 +01:00
|
|
|
else if (parser[0] == "buffers")
|
2014-09-22 20:19:34 +02:00
|
|
|
{
|
|
|
|
write_debug("Buffers:");
|
|
|
|
for (auto& buffer : BufferManager::instance())
|
|
|
|
write_debug(buffer->debug_description());
|
|
|
|
}
|
2014-11-28 14:18:08 +01:00
|
|
|
else if (parser[0] == "options")
|
2014-11-26 14:27:26 +01:00
|
|
|
{
|
|
|
|
write_debug("Options:");
|
|
|
|
for (auto& option : context.options().flatten_options())
|
|
|
|
write_debug(" * " + option->name() + ": " + option->get_as_string());
|
|
|
|
}
|
2015-01-07 20:29:31 +01:00
|
|
|
else if (parser[0] == "memory")
|
|
|
|
{
|
2015-01-12 20:46:40 +01:00
|
|
|
auto total = 0;
|
2015-01-07 20:29:31 +01:00
|
|
|
write_debug("Memory usage:");
|
2015-01-12 20:46:40 +01:00
|
|
|
for (int domain = 0; domain < (int)MemoryDomain::Count; ++domain)
|
|
|
|
{
|
|
|
|
size_t count = domain_allocated_bytes[domain];
|
|
|
|
total += count;
|
2015-01-13 14:48:16 +01:00
|
|
|
write_debug(" "_sv + domain_name((MemoryDomain)domain) + ": " + to_string(count));
|
2015-01-12 20:46:40 +01:00
|
|
|
}
|
2015-01-13 14:48:16 +01:00
|
|
|
write_debug(" Total: " + to_string(total));
|
2015-01-14 20:16:32 +01:00
|
|
|
#if defined(__GLIBC__) || defined(__CYGWIN__)
|
2015-01-13 14:48:16 +01:00
|
|
|
write_debug(" Malloced: " + to_string(mallinfo().uordblks));
|
2015-01-12 20:55:58 +01:00
|
|
|
#endif
|
2015-01-07 20:29:31 +01:00
|
|
|
}
|
2015-01-15 14:54:38 +01:00
|
|
|
else if (parser[0] == "shared-strings")
|
2015-01-13 14:48:16 +01:00
|
|
|
{
|
|
|
|
StringRegistry::instance().debug_stats();
|
|
|
|
}
|
2014-03-31 21:07:35 +02:00
|
|
|
else
|
|
|
|
throw runtime_error("unknown debug command '" + parser[0] + "'");
|
2013-12-04 01:27:19 +01:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
const CommandDesc source_cmd = {
|
|
|
|
"source",
|
|
|
|
nullptr,
|
|
|
|
"source <filename>: execute commands contained in <filename>",
|
|
|
|
single_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
filename_completer,
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
2013-12-04 01:27:19 +01:00
|
|
|
{
|
2014-02-14 03:21:06 +01:00
|
|
|
String file_content = read_file(parse_filename(parser[0]));
|
|
|
|
try
|
|
|
|
{
|
|
|
|
CommandManager::instance().execute(file_content, context);
|
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& err)
|
|
|
|
{
|
2014-05-07 21:39:59 +02:00
|
|
|
write_debug(parser[0] + ":" + err.what());
|
2014-02-14 03:21:06 +01:00
|
|
|
throw;
|
|
|
|
}
|
2013-12-04 01:27:19 +01:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2012-05-07 05:13:34 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc set_option_cmd = {
|
|
|
|
"set",
|
|
|
|
nullptr,
|
|
|
|
"set <switches> <scope> <name> <value>: set option <name> in <scope> to <value>",
|
|
|
|
ParameterDesc{
|
|
|
|
SwitchMap{ { "add", { false, "add to option rather than replacing it" } } },
|
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart,
|
|
|
|
3, 3
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
[](const Context& context, CommandParameters params) -> String
|
|
|
|
{
|
|
|
|
if (params.size() < 2)
|
|
|
|
return "";
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
OptionManager& options = get_scope(params[0], context).options();
|
|
|
|
const String& docstring = options[params[1]].docstring();
|
|
|
|
if (not docstring.empty())
|
|
|
|
return params[1] + ": " + docstring;
|
|
|
|
}
|
|
|
|
catch (runtime_error&) {}
|
|
|
|
return "";
|
|
|
|
},
|
2014-02-14 03:21:06 +01:00
|
|
|
[](const Context& context, CompletionFlags,
|
|
|
|
CommandParameters params, size_t token_to_complete,
|
|
|
|
ByteCount pos_in_token) -> Completions
|
|
|
|
{
|
|
|
|
if (token_to_complete == 0)
|
|
|
|
return { 0_byte, params[0].length(),
|
2014-12-23 18:39:12 +01:00
|
|
|
complete(params[0], pos_in_token, scopes) };
|
2014-02-14 03:21:06 +01:00
|
|
|
else if (token_to_complete == 1)
|
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
OptionManager& options = get_scope(params[0], context).options();
|
2014-02-14 03:21:06 +01:00
|
|
|
return { 0_byte, params[1].length(),
|
|
|
|
options.complete_option_name(params[1], pos_in_token) };
|
|
|
|
}
|
2014-05-05 13:55:04 +02:00
|
|
|
else if (token_to_complete == 2 and
|
2014-10-30 15:00:42 +01:00
|
|
|
GlobalScope::instance().option_registry().option_exists(params[1]))
|
2014-05-05 13:55:04 +02:00
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
OptionManager& options = get_scope(params[0], context).options();
|
2014-05-05 13:55:04 +02:00
|
|
|
String val = options[params[1]].get_as_string();
|
|
|
|
if (prefix_match(val, params[2]))
|
|
|
|
return { 0_byte, params[2].length(), { std::move(val) } };
|
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
return Completions{};
|
|
|
|
},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
Option& opt = get_scope(parser[0], context).options().get_local_option(parser[1]);
|
2014-02-14 03:21:06 +01:00
|
|
|
if (parser.has_option("add"))
|
|
|
|
opt.add_from_string(parser[2]);
|
|
|
|
else
|
|
|
|
opt.set_from_string(parser[2]);
|
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc declare_option_cmd = {
|
|
|
|
"decl",
|
|
|
|
nullptr,
|
2014-02-15 01:35:43 +01:00
|
|
|
"decl <type> <name> [value]: declare option <name> of type <type>.\n"
|
2014-06-06 14:58:35 +02:00
|
|
|
"set its initial value to <value> if given and if the option did not exist\n"
|
2014-02-14 03:21:06 +01:00
|
|
|
"Available types:\n"
|
|
|
|
" int: integer\n"
|
|
|
|
" bool: boolean (true/false or yes/no)\n"
|
|
|
|
" str: character string\n"
|
|
|
|
" regex: regular expression\n"
|
|
|
|
" int-list: list of integers\n"
|
|
|
|
" str-list: list of character strings\n"
|
|
|
|
" line-flag-list: list of line flags\n",
|
|
|
|
ParameterDesc{
|
2014-04-09 21:14:04 +02:00
|
|
|
SwitchMap{ { "hidden", { false, "do not display option name when completing" } },
|
|
|
|
{ "docstring", { true, "specify option description" } } },
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart,
|
|
|
|
2, 3
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
Option* opt = nullptr;
|
|
|
|
|
2014-04-12 21:03:26 +02:00
|
|
|
OptionFlags flags = OptionFlags::None;
|
2014-02-14 03:21:06 +01:00
|
|
|
if (parser.has_option("hidden"))
|
2014-04-12 21:03:26 +02:00
|
|
|
flags = OptionFlags::Hidden;
|
2014-02-14 03:21:06 +01:00
|
|
|
|
2014-04-09 21:14:04 +02:00
|
|
|
String docstring;
|
|
|
|
if (parser.has_option("docstring"))
|
|
|
|
docstring = parser.option_value("docstring");
|
|
|
|
|
2014-10-30 15:00:42 +01:00
|
|
|
OptionsRegistry& reg = GlobalScope::instance().option_registry();
|
2014-02-14 03:21:06 +01:00
|
|
|
|
|
|
|
if (parser[0] == "int")
|
2014-10-30 15:00:42 +01:00
|
|
|
opt = ®.declare_option<int>(parser[1], docstring, 0, flags);
|
2014-04-14 20:01:00 +02:00
|
|
|
else if (parser[0] == "bool")
|
2014-10-30 15:00:42 +01:00
|
|
|
opt = ®.declare_option<bool>(parser[1], docstring, 0, flags);
|
2014-02-14 03:21:06 +01:00
|
|
|
else if (parser[0] == "str")
|
2014-10-30 15:00:42 +01:00
|
|
|
opt = ®.declare_option<String>(parser[1], docstring, "", flags);
|
2014-02-14 03:21:06 +01:00
|
|
|
else if (parser[0] == "regex")
|
2014-10-30 15:00:42 +01:00
|
|
|
opt = ®.declare_option<Regex>(parser[1], docstring, Regex{}, flags);
|
2014-02-14 03:21:06 +01:00
|
|
|
else if (parser[0] == "int-list")
|
2015-01-12 14:24:30 +01:00
|
|
|
opt = ®.declare_option<Vector<int, MemoryDomain::Options>>(parser[1], docstring, {}, flags);
|
2014-02-14 03:21:06 +01:00
|
|
|
else if (parser[0] == "str-list")
|
2015-01-12 14:24:30 +01:00
|
|
|
opt = ®.declare_option<Vector<String, MemoryDomain::Options>>(parser[1], docstring, {}, flags);
|
2014-02-14 03:21:06 +01:00
|
|
|
else if (parser[0] == "line-flag-list")
|
2015-01-12 14:24:30 +01:00
|
|
|
opt = ®.declare_option<Vector<LineAndFlag, MemoryDomain::Options>>(parser[1], docstring, {}, flags);
|
2014-02-14 03:21:06 +01:00
|
|
|
else
|
|
|
|
throw runtime_error("unknown type " + parser[0]);
|
2013-03-03 17:25:40 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
if (parser.positional_count() == 3)
|
|
|
|
opt->set_from_string(parser[2]);
|
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2013-10-25 01:01:17 +02:00
|
|
|
KeymapMode parse_keymap_mode(const String& str)
|
|
|
|
{
|
|
|
|
if (prefix_match("normal", str)) return KeymapMode::Normal;
|
|
|
|
if (prefix_match("insert", str)) return KeymapMode::Insert;
|
|
|
|
if (prefix_match("menu", str)) return KeymapMode::Menu;
|
|
|
|
if (prefix_match("prompt", str)) return KeymapMode::Prompt;
|
2014-10-23 14:37:47 +02:00
|
|
|
if (prefix_match("goto", str)) return KeymapMode::Goto;
|
|
|
|
if (prefix_match("view", str)) return KeymapMode::View;
|
2014-12-12 14:57:02 +01:00
|
|
|
if (prefix_match("user", str)) return KeymapMode::User;
|
2013-10-25 01:01:17 +02:00
|
|
|
|
2014-10-23 14:37:47 +02:00
|
|
|
throw runtime_error("unknown keymap mode '" + str + "'");
|
2014-04-26 10:40:26 +02:00
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc map_key_cmd = {
|
|
|
|
"map",
|
|
|
|
nullptr,
|
2014-04-26 10:40:26 +02:00
|
|
|
"map <scope> <mode> <key> <keys>: map <key> to <keys> in given mode at given scope.\n"
|
|
|
|
"Valid scopes:\n"
|
|
|
|
" window\n"
|
|
|
|
" buffer\n"
|
|
|
|
" global\n"
|
2014-02-14 03:21:06 +01:00
|
|
|
"Valid modes:\n"
|
|
|
|
" normal\n"
|
|
|
|
" insert\n"
|
|
|
|
" menu\n"
|
2014-12-12 14:57:02 +01:00
|
|
|
" prompt\n"
|
2015-02-05 14:56:16 +01:00
|
|
|
" goto\n"
|
|
|
|
" view\n"
|
2014-12-12 14:57:02 +01:00
|
|
|
" user\n",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::None, 4, 4 },
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-04-26 10:40:26 +02:00
|
|
|
[](const Context& context, CompletionFlags flags,
|
2014-10-23 14:37:47 +02:00
|
|
|
CommandParameters params, size_t token_to_complete,
|
|
|
|
ByteCount pos_in_token) -> Completions
|
2014-04-26 10:40:26 +02:00
|
|
|
{
|
|
|
|
if (token_to_complete == 0)
|
2014-10-23 14:37:47 +02:00
|
|
|
return { 0_byte, params[0].length(),
|
2014-12-23 18:39:12 +01:00
|
|
|
complete(params[0], pos_in_token, scopes) };
|
2014-04-26 10:40:26 +02:00
|
|
|
if (token_to_complete == 1)
|
2014-10-23 14:37:47 +02:00
|
|
|
{
|
2015-02-05 14:56:16 +01:00
|
|
|
constexpr const char* modes[] = { "normal", "insert", "menu", "prompt", "goto", "view", "user" };
|
2014-10-23 14:37:47 +02:00
|
|
|
return { 0_byte, params[1].length(),
|
2014-12-23 18:39:12 +01:00
|
|
|
complete(params[1], pos_in_token, modes) };
|
2014-10-23 14:37:47 +02:00
|
|
|
}
|
|
|
|
return {};
|
2014-04-26 10:40:26 +02:00
|
|
|
},
|
2014-02-14 03:21:06 +01:00
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2014-10-30 15:00:42 +01:00
|
|
|
KeymapManager& keymaps = get_scope(parser[0], context).keymaps();
|
2014-02-14 03:21:06 +01:00
|
|
|
KeymapMode keymap_mode = parse_keymap_mode(parser[1]);
|
2013-10-25 01:01:17 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
KeyList key = parse_keys(parser[2]);
|
|
|
|
if (key.size() != 1)
|
|
|
|
throw runtime_error("only a single key can be mapped");
|
2013-10-25 01:01:17 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
KeyList mapping = parse_keys(parser[3]);
|
|
|
|
keymaps.map_key(key[0], keymap_mode, std::move(mapping));
|
|
|
|
}
|
|
|
|
};
|
2013-10-25 01:01:17 +02:00
|
|
|
|
2014-02-08 02:02:58 +01:00
|
|
|
const ParameterDesc context_wrap_params = {
|
2014-02-11 23:23:44 +01:00
|
|
|
SwitchMap{ { "client", { true, "run in given client context" } },
|
2014-02-11 23:16:17 +01:00
|
|
|
{ "try-client", { true, "run in given client context if it exists, or else in the current one" } },
|
2014-02-19 03:59:41 +01:00
|
|
|
{ "buffer", { true, "run in a disposable context for each given buffer in the comma separated list argument" } },
|
2014-02-11 23:16:17 +01:00
|
|
|
{ "draft", { false, "run in a disposable context" } },
|
2014-03-20 09:29:41 +01:00
|
|
|
{ "no-hooks", { false, "disable hooks" } },
|
2014-07-27 21:18:09 +02:00
|
|
|
{ "with-maps", { false, "use user defined key mapping when executing keys" } },
|
2014-02-11 23:16:17 +01:00
|
|
|
{ "itersel", { false, "run once for each selection with that selection as the only one" } } },
|
2014-02-11 23:23:44 +01:00
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart, 1
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-07-08 21:24:51 +02:00
|
|
|
template<typename T>
|
|
|
|
struct DisableOption {
|
|
|
|
DisableOption(Context& context, const char* name)
|
|
|
|
: m_option(context.options()[name]),
|
|
|
|
m_prev_value(m_option.get<T>())
|
|
|
|
{ m_option.set(T{}); }
|
|
|
|
|
|
|
|
~DisableOption() { m_option.set(m_prev_value); }
|
|
|
|
|
|
|
|
Option& m_option;
|
|
|
|
T m_prev_value;
|
|
|
|
};
|
|
|
|
|
2013-01-17 14:06:06 +01:00
|
|
|
template<typename Func>
|
2014-02-08 02:02:58 +01:00
|
|
|
void context_wrap(const ParametersParser& parser, Context& context, Func func)
|
2012-05-07 05:13:34 +02:00
|
|
|
{
|
2014-07-24 20:18:39 +02:00
|
|
|
// Disable these options to avoid costly code paths (and potential screen
|
|
|
|
// redraws) That are useful only in interactive contexts.
|
2014-07-08 21:24:51 +02:00
|
|
|
DisableOption<int> disable_autoinfo(context, "autoinfo");
|
|
|
|
DisableOption<bool> disable_autoshowcompl(context, "autoshowcompl");
|
|
|
|
DisableOption<bool> disable_incsearch(context, "incsearch");
|
2014-05-25 18:36:12 +02:00
|
|
|
|
2014-12-05 14:47:09 +01:00
|
|
|
const bool disable_hooks = parser.has_option("no-hooks") or
|
|
|
|
context.user_hooks_support().is_disabled();
|
2014-07-27 21:18:09 +02:00
|
|
|
const bool disable_keymaps = not parser.has_option("with-maps");
|
2014-05-25 18:36:12 +02:00
|
|
|
|
2013-12-07 14:44:23 +01:00
|
|
|
ClientManager& cm = ClientManager::instance();
|
2014-02-19 03:59:41 +01:00
|
|
|
if (parser.has_option("buffer"))
|
|
|
|
{
|
|
|
|
auto names = split(parser.option_value("buffer"), ',');
|
|
|
|
for (auto& name : names)
|
|
|
|
{
|
|
|
|
Buffer& buffer = BufferManager::instance().get_buffer(name);
|
2014-12-19 00:12:58 +01:00
|
|
|
InputHandler input_handler{{ buffer, Selection{} },
|
|
|
|
Context::Flags::Transient};
|
2014-12-05 15:01:07 +01:00
|
|
|
Context& c = input_handler.context();
|
|
|
|
|
2014-07-24 20:18:39 +02:00
|
|
|
// Propagate user hooks disabled status to the temporary context
|
2014-12-05 15:01:07 +01:00
|
|
|
ScopedDisable hook_disable(c.user_hooks_support(), disable_hooks);
|
|
|
|
ScopedDisable keymaps_disable(c.keymaps_support(), disable_keymaps);
|
|
|
|
|
|
|
|
func(parser, c);
|
2014-02-19 03:59:41 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-07 14:44:23 +01:00
|
|
|
Context* real_context = &context;
|
|
|
|
if (parser.has_option("client"))
|
|
|
|
real_context = &cm.get_client(parser.option_value("client")).context();
|
|
|
|
else if (parser.has_option("try-client"))
|
|
|
|
{
|
2015-01-03 18:35:53 +01:00
|
|
|
if (Client* client = cm.get_client_ifp(parser.option_value("try-client")))
|
2013-12-07 14:44:23 +01:00
|
|
|
real_context = &client->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
|
|
|
{
|
2014-12-19 00:12:58 +01:00
|
|
|
InputHandler input_handler(real_context->selections(),
|
|
|
|
Context::Flags::Transient,
|
|
|
|
real_context->name());
|
2014-12-05 15:01:07 +01:00
|
|
|
Context& c = input_handler.context();
|
2013-11-06 00:50:44 +01:00
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
// We do not want this draft context to commit undo groups if the real one is
|
|
|
|
// going to commit the whole thing later
|
|
|
|
if (real_context->is_editing())
|
2014-12-05 15:01:07 +01:00
|
|
|
c.disable_undo_handling();
|
2013-12-15 19:07:51 +01:00
|
|
|
|
2014-12-05 15:01:07 +01:00
|
|
|
ScopedDisable hook_disable(c.user_hooks_support(), disable_hooks);
|
|
|
|
ScopedDisable keymaps_disable(c.keymaps_support(), disable_keymaps);
|
2014-07-24 20:18:39 +02:00
|
|
|
|
2013-11-06 00:50:44 +01:00
|
|
|
if (parser.has_option("itersel"))
|
|
|
|
{
|
2014-05-13 00:25:15 +02:00
|
|
|
SelectionList sels{real_context->selections()};
|
2014-12-05 15:01:07 +01:00
|
|
|
ScopedEdition edition{c};
|
2013-11-06 00:50:44 +01:00
|
|
|
for (auto& sel : sels)
|
|
|
|
{
|
2014-12-05 15:01:07 +01:00
|
|
|
c.selections() = SelectionList{ sels.buffer(), sel, sels.timestamp() };
|
|
|
|
c.selections().update();
|
2014-05-13 00:25:15 +02:00
|
|
|
|
2014-12-05 15:01:07 +01:00
|
|
|
func(parser, c);
|
2014-05-13 00:25:15 +02:00
|
|
|
|
2014-12-05 15:01:07 +01:00
|
|
|
if (&sels.buffer() != &c.buffer())
|
2014-05-13 00:25:15 +02:00
|
|
|
throw runtime_error("the buffer has changed while iterating on selections");
|
2013-11-06 00:50:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2014-12-05 15:01:07 +01:00
|
|
|
func(parser, c);
|
2013-02-07 19:25:07 +01:00
|
|
|
}
|
|
|
|
else
|
2013-11-06 00:50:44 +01:00
|
|
|
{
|
|
|
|
if (parser.has_option("itersel"))
|
|
|
|
throw runtime_error("-itersel makes no sense without -draft");
|
2014-07-24 20:18:39 +02:00
|
|
|
|
2014-12-05 15:01:07 +01:00
|
|
|
ScopedDisable hook_disable(real_context->user_hooks_support(), disable_hooks);
|
|
|
|
ScopedDisable keymaps_disable(real_context->keymaps_support(), disable_keymaps);
|
2014-07-24 20:18:39 +02:00
|
|
|
|
2013-12-07 14:44:23 +01:00
|
|
|
func(parser, *real_context);
|
2013-11-06 00:50:44 +01:00
|
|
|
}
|
2013-04-09 14:21:48 +02:00
|
|
|
|
|
|
|
// force redraw of this client window
|
2013-12-07 14:44:23 +01:00
|
|
|
if (real_context != &context and real_context->has_window())
|
|
|
|
real_context->window().forget_timestamp();
|
2012-12-03 18:57:57 +01:00
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc exec_string_cmd = {
|
|
|
|
"exec",
|
|
|
|
nullptr,
|
|
|
|
"exec <switches> <keys>: execute given keys as if entered by user",
|
|
|
|
context_wrap_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
context_wrap(parser, 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);
|
|
|
|
});
|
|
|
|
}
|
2014-02-11 23:16:17 +01:00
|
|
|
};
|
2012-05-29 01:50:11 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc eval_string_cmd = {
|
|
|
|
"eval",
|
|
|
|
nullptr,
|
2014-06-06 14:58:35 +02:00
|
|
|
"eval <switches> <commands>...: execute commands as if entered by user",
|
2014-02-14 03:21:06 +01:00
|
|
|
context_wrap_params,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
2012-05-29 01:50:11 +02:00
|
|
|
{
|
2014-02-14 03:21:06 +01:00
|
|
|
context_wrap(parser, context, [](const ParametersParser& parser, Context& context) {
|
|
|
|
String command;
|
|
|
|
for (auto& param : parser)
|
|
|
|
command += param + " ";
|
|
|
|
CommandManager::instance().execute(command, context);
|
|
|
|
});
|
2012-05-29 01:50:11 +02:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2012-05-29 01:50:11 +02:00
|
|
|
|
2014-04-13 15:15:34 +02:00
|
|
|
const CommandDesc prompt_cmd = {
|
|
|
|
"prompt",
|
|
|
|
nullptr,
|
|
|
|
"prompt <prompt> <register> <command>: prompt the use to enter a text string "
|
|
|
|
"stores it in <register> and then executes <command>",
|
2014-04-26 16:09:07 +02:00
|
|
|
ParameterDesc{
|
|
|
|
SwitchMap{ { "init", { true, "set initial prompt content" } } },
|
|
|
|
ParameterDesc::Flags::None, 3, 3
|
|
|
|
},
|
2014-04-13 15:15:34 +02:00
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-04-13 15:15:34 +02:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& params, Context& context)
|
|
|
|
{
|
|
|
|
if (params[1].length() != 1)
|
|
|
|
throw runtime_error("register name should be a single character");
|
|
|
|
const char reg = params[1][0];
|
|
|
|
const String& command = params[2];
|
|
|
|
|
2014-04-26 16:09:07 +02:00
|
|
|
String initstr;
|
|
|
|
if (params.has_option("init"))
|
|
|
|
initstr = params.option_value("init");
|
|
|
|
|
2014-04-13 15:15:34 +02:00
|
|
|
context.input_handler().prompt(
|
2014-07-11 01:27:04 +02:00
|
|
|
params[0], std::move(initstr), get_face("Prompt"), Completer{},
|
2014-11-01 20:31:13 +01:00
|
|
|
[=](StringView str, PromptEvent event, Context& context)
|
2014-04-13 15:15:34 +02:00
|
|
|
{
|
|
|
|
if (event != PromptEvent::Validate)
|
|
|
|
return;
|
2015-01-06 14:40:56 +01:00
|
|
|
RegisterManager::instance()[reg] = ArrayView<String>(str);
|
2014-04-13 15:15:34 +02:00
|
|
|
|
|
|
|
CommandManager::instance().execute(command, context);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc menu_cmd = {
|
|
|
|
"menu",
|
|
|
|
nullptr,
|
|
|
|
"menu <switches> <name1> <commands1> <name2> <commands2>...: display a menu and execute commands for the selected item",
|
|
|
|
ParameterDesc{
|
|
|
|
SwitchMap{ { "auto-single", { false, "instantly validate if only one item is available" } },
|
|
|
|
{ "select-cmds", { false, "each item specify an additional command to run when selected" } } }
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
2014-02-14 03:21:06 +01:00
|
|
|
const bool with_select_cmds = parser.has_option("select-cmds");
|
|
|
|
const size_t modulo = with_select_cmds ? 3 : 2;
|
2012-05-18 07:20:46 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const size_t count = parser.positional_count();
|
|
|
|
if (count == 0 or (count % modulo) != 0)
|
|
|
|
throw wrong_argument_count();
|
2012-05-18 07:20:46 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
if (count == modulo and parser.has_option("auto-single"))
|
|
|
|
{
|
|
|
|
CommandManager::instance().execute(parser[1], context);
|
|
|
|
return;
|
|
|
|
}
|
2012-12-14 19:04:34 +01:00
|
|
|
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> choices;
|
|
|
|
Vector<String> commands;
|
|
|
|
Vector<String> select_cmds;
|
2014-02-14 03:21:06 +01:00
|
|
|
for (int i = 0; i < count; i += modulo)
|
|
|
|
{
|
|
|
|
choices.push_back(parser[i]);
|
|
|
|
commands.push_back(parser[i+1]);
|
|
|
|
if (with_select_cmds)
|
|
|
|
select_cmds.push_back(parser[i+2]);
|
|
|
|
}
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
context.input_handler().menu(choices,
|
|
|
|
[=](int choice, MenuEvent event, Context& context) {
|
|
|
|
if (event == MenuEvent::Validate and choice >= 0 and choice < commands.size())
|
|
|
|
CommandManager::instance().execute(commands[choice], context);
|
|
|
|
if (event == MenuEvent::Select and choice >= 0 and choice < select_cmds.size())
|
|
|
|
CommandManager::instance().execute(select_cmds[choice], context);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const CommandDesc info_cmd = {
|
|
|
|
"info",
|
|
|
|
nullptr,
|
|
|
|
"info <switches> <params>...: display an info box with the params as content",
|
|
|
|
ParameterDesc{
|
2014-10-31 22:49:36 +01:00
|
|
|
SwitchMap{ { "anchor", { true, "set info anchoring <line>.<column>" } },
|
2014-11-10 14:28:06 +01:00
|
|
|
{ "placement", { true, "set placement relative to anchor (above, below)" } },
|
2014-02-14 03:21:06 +01:00
|
|
|
{ "title", { true, "set info title" } } },
|
|
|
|
ParameterDesc::Flags::None, 0, 1
|
|
|
|
},
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
2012-12-14 19:25:27 +01:00
|
|
|
{
|
2014-02-14 03:21:06 +01:00
|
|
|
context.ui().info_hide();
|
|
|
|
if (parser.positional_count() > 0)
|
2013-01-29 18:56:14 +01:00
|
|
|
{
|
2014-11-08 18:59:38 +01:00
|
|
|
InfoStyle style = InfoStyle::Prompt;
|
2014-11-08 20:08:23 +01:00
|
|
|
CharCoord pos;
|
2014-02-14 03:21:06 +01:00
|
|
|
if (parser.has_option("anchor"))
|
|
|
|
{
|
2014-10-31 22:49:36 +01:00
|
|
|
auto anchor = parser.option_value("anchor");
|
|
|
|
size_t dot = anchor.find_first_of('.');
|
|
|
|
if (dot == String::npos)
|
|
|
|
throw runtime_error("expected <line>.<column> for anchor");
|
|
|
|
ByteCount dotb = (int)dot;
|
|
|
|
ByteCoord coord{str_to_int(anchor.substr(0, dotb))-1,
|
|
|
|
str_to_int(anchor.substr(dotb+1))-1};
|
|
|
|
pos = context.window().display_position(coord);
|
2014-11-08 18:59:38 +01:00
|
|
|
style = InfoStyle::Inline;
|
2014-11-10 14:28:06 +01:00
|
|
|
if (parser.has_option("placement"))
|
|
|
|
{
|
|
|
|
auto placement = parser.option_value("placement");
|
|
|
|
if (placement == "above")
|
|
|
|
style = InfoStyle::InlineAbove;
|
|
|
|
else if (placement == "below")
|
|
|
|
style = InfoStyle::InlineBelow;
|
|
|
|
else
|
|
|
|
throw runtime_error("invalid placement " + placement);
|
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
|
|
|
const String& title = parser.has_option("title") ? parser.option_value("title") : "";
|
2014-07-11 01:27:04 +02:00
|
|
|
context.ui().info_show(title, parser[0], pos, get_face("Information"), style);
|
2013-01-29 18:56:14 +01:00
|
|
|
}
|
2012-12-14 19:25:27 +01:00
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc try_catch_cmd = {
|
|
|
|
"try",
|
|
|
|
nullptr,
|
|
|
|
"try <command> [catch <error_command>]: execute command in current context.\n"
|
|
|
|
"if an error is raised and <error_command> is specified, execute it.\n"
|
|
|
|
"The error is not propagated further.",
|
|
|
|
ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::None, 1, 3 },
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
if (parser.positional_count() == 2)
|
|
|
|
throw wrong_argument_count();
|
2013-10-31 20:22:00 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const bool do_catch = parser.positional_count() == 3;
|
|
|
|
if (do_catch and parser[1] != "catch")
|
|
|
|
throw runtime_error("usage: try <commands> [catch <on error commands>]");
|
2012-06-04 16:27:34 +02:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandManager& command_manager = CommandManager::instance();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
command_manager.execute(parser[0], context);
|
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& e)
|
|
|
|
{
|
|
|
|
if (do_catch)
|
|
|
|
command_manager.execute(parser[2], context);
|
|
|
|
}
|
2012-06-04 16:27:34 +02:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
|
|
|
|
2014-07-12 11:55:50 +02:00
|
|
|
static Completions complete_face(const Context&, CompletionFlags flags,
|
|
|
|
const String& prefix, ByteCount cursor_pos)
|
2014-03-29 14:18:46 +01:00
|
|
|
{
|
2014-05-18 15:14:37 +02:00
|
|
|
return {0_byte, cursor_pos,
|
2014-07-11 01:27:04 +02:00
|
|
|
FaceRegistry::instance().complete_alias_name(prefix, cursor_pos)};
|
2014-03-29 14:18:46 +01:00
|
|
|
}
|
|
|
|
|
2014-07-12 11:55:50 +02:00
|
|
|
const CommandDesc face_cmd = {
|
|
|
|
"face",
|
|
|
|
nullptr,
|
|
|
|
"face <name> <facespec>: set face <name> to refer to <facespec>\n",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::None, 2, 2 },
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-07-12 11:55:50 +02:00
|
|
|
PerArgumentCommandCompleter({ complete_face, complete_face }),
|
2014-02-14 03:21:06 +01:00
|
|
|
[](const ParametersParser& parser, Context& context)
|
2012-06-04 16:27:34 +02:00
|
|
|
{
|
2014-07-11 01:27:04 +02:00
|
|
|
FaceRegistry::instance().register_alias(parser[0], parser[1], true);
|
2012-06-04 16:27:34 +02:00
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc set_client_name_cmd = {
|
|
|
|
"nameclient",
|
|
|
|
"nc",
|
|
|
|
"nameclient <name>: set current client name to <name>",
|
|
|
|
single_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
if (ClientManager::instance().validate_client_name(parser[0]))
|
|
|
|
context.set_name(parser[0]);
|
|
|
|
else if (context.name() != parser[0])
|
|
|
|
throw runtime_error("client name '" + parser[0] + "' is not unique");
|
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc set_register_cmd = {
|
|
|
|
"reg",
|
|
|
|
nullptr,
|
|
|
|
"reg <name> <value>: set register <name> to <value>",
|
|
|
|
ParameterDesc{ SwitchMap{}, ParameterDesc::Flags::None, 2, 2 },
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2015-01-06 14:40:56 +01:00
|
|
|
RegisterManager::instance()[parser[0]] = ArrayView<String>(parser[1]);
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
2013-03-18 22:43:48 +01:00
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc change_working_directory_cmd = {
|
|
|
|
"cd",
|
|
|
|
nullptr,
|
|
|
|
"cd <dir>: change server working directory to <dir>",
|
|
|
|
single_name_param,
|
|
|
|
CommandFlags::None,
|
2015-02-08 20:04:20 +01:00
|
|
|
CommandHelper{},
|
2014-02-14 03:21:06 +01:00
|
|
|
filename_completer,
|
|
|
|
[](const ParametersParser& parser, Context&)
|
|
|
|
{
|
|
|
|
if (chdir(parse_filename(parser[0]).c_str()) != 0)
|
|
|
|
throw runtime_error("cannot change to directory " + parser[0]);
|
|
|
|
}
|
2014-02-08 02:02:58 +01:00
|
|
|
};
|
2013-03-25 19:19:44 +01:00
|
|
|
|
2013-02-18 18:57:08 +01:00
|
|
|
class RegisterRestorer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RegisterRestorer(char name, const Context& context)
|
|
|
|
: m_name(name)
|
|
|
|
{
|
2015-01-06 14:40:56 +01:00
|
|
|
ArrayView<String> save = RegisterManager::instance()[name].values(context);
|
2015-01-12 14:58:41 +01:00
|
|
|
m_save = Vector<String>(save.begin(), save.end());
|
2013-02-18 18:57:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~RegisterRestorer()
|
|
|
|
{ RegisterManager::instance()[m_name] = m_save; }
|
|
|
|
|
|
|
|
private:
|
2015-01-12 14:58:41 +01:00
|
|
|
Vector<String> m_save;
|
2013-02-18 18:57:08 +01:00
|
|
|
char m_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-06 14:40:56 +01:00
|
|
|
void exec_keys(ArrayView<Key> keys, Context& context)
|
2013-02-18 18:57:08 +01:00
|
|
|
{
|
|
|
|
RegisterRestorer quote('"', context);
|
|
|
|
RegisterRestorer slash('/', context);
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
2013-02-18 18:57:08 +01:00
|
|
|
|
2013-09-11 19:54:30 +02:00
|
|
|
for (auto& key : keys)
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().handle_key(key);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
static void register_command(CommandManager& cm, const CommandDesc& c)
|
2014-01-26 17:14:02 +01:00
|
|
|
{
|
2015-02-08 20:04:20 +01:00
|
|
|
cm.register_command(c.name, c.func, c.docstring, c.params, c.flags, c.helper, c.completer);
|
2014-02-14 03:21:06 +01:00
|
|
|
if (c.alias)
|
2014-10-30 15:00:42 +01:00
|
|
|
GlobalScope::instance().aliases().add_alias(c.alias, c.name);
|
2014-01-26 17:14:02 +01:00
|
|
|
}
|
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
void register_commands()
|
|
|
|
{
|
|
|
|
CommandManager& cm = CommandManager::instance();
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
cm.register_command("nop", [](const ParametersParser&, Context&){}, "do nothing", {});
|
|
|
|
|
|
|
|
register_command(cm, edit_cmd);
|
|
|
|
register_command(cm, force_edit_cmd);
|
|
|
|
register_command(cm, write_cmd);
|
|
|
|
register_command(cm, writeall_cmd);
|
2014-07-01 10:56:11 +02:00
|
|
|
register_command(cm, writeall_quit_cmd);
|
2014-02-14 03:21:06 +01:00
|
|
|
register_command(cm, quit_cmd);
|
|
|
|
register_command(cm, force_quit_cmd);
|
|
|
|
register_command(cm, write_quit_cmd);
|
|
|
|
register_command(cm, force_write_quit_cmd);
|
|
|
|
register_command(cm, buffer_cmd);
|
|
|
|
register_command(cm, delbuf_cmd);
|
|
|
|
register_command(cm, force_delbuf_cmd);
|
|
|
|
register_command(cm, namebuf_cmd);
|
|
|
|
register_command(cm, add_highlighter_cmd);
|
|
|
|
register_command(cm, rm_highlighter_cmd);
|
|
|
|
register_command(cm, add_hook_cmd);
|
|
|
|
register_command(cm, rm_hook_cmd);
|
|
|
|
register_command(cm, define_command_cmd);
|
2014-10-30 00:22:54 +01:00
|
|
|
register_command(cm, alias_cmd);
|
|
|
|
register_command(cm, unalias_cmd);
|
2014-02-14 03:21:06 +01:00
|
|
|
register_command(cm, echo_cmd);
|
|
|
|
register_command(cm, debug_cmd);
|
|
|
|
register_command(cm, source_cmd);
|
|
|
|
register_command(cm, set_option_cmd);
|
|
|
|
register_command(cm, declare_option_cmd);
|
|
|
|
register_command(cm, map_key_cmd);
|
|
|
|
register_command(cm, exec_string_cmd);
|
|
|
|
register_command(cm, eval_string_cmd);
|
2014-04-13 15:15:34 +02:00
|
|
|
register_command(cm, prompt_cmd);
|
2014-02-14 03:21:06 +01:00
|
|
|
register_command(cm, menu_cmd);
|
|
|
|
register_command(cm, info_cmd);
|
|
|
|
register_command(cm, try_catch_cmd);
|
2014-07-12 11:55:50 +02:00
|
|
|
register_command(cm, face_cmd);
|
2014-02-14 03:21:06 +01:00
|
|
|
register_command(cm, set_client_name_cmd);
|
|
|
|
register_command(cm, set_register_cmd);
|
|
|
|
register_command(cm, change_working_directory_cmd);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
|
|
|
}
|