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 "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)
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("unable to open '{}'", filename));
|
2013-03-22 18:39:00 +01:00
|
|
|
|
2015-03-10 20:33:46 +01:00
|
|
|
return create_fifo_buffer(name.str(), 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)
|
|
|
|
{
|
2015-03-10 20:33:46 +01:00
|
|
|
auto it = find(reversed(name), '/');
|
|
|
|
if (it != name.rend())
|
|
|
|
match_name = StringView{it.base() + 2, name.end()};
|
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
|
|
|
});
|
|
|
|
|
2015-03-14 18:30:34 +01:00
|
|
|
const ParameterDesc no_params{ {}, ParameterDesc::Flags::None, 0, 0 };
|
|
|
|
const ParameterDesc single_name_param{ {}, ParameterDesc::Flags::None, 1, 1 };
|
|
|
|
const ParameterDesc single_optional_name_param{ {}, 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;
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("error: no such scope '{}'", scope));
|
2014-10-30 15:00:42 +01:00
|
|
|
}
|
|
|
|
|
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();
|
2015-04-23 21:15:17 +02:00
|
|
|
auto& buffer_manager = BufferManager::instance();
|
2012-05-07 05:13:34 +02:00
|
|
|
|
|
|
|
Buffer* buffer = nullptr;
|
2015-04-15 02:36:47 +02:00
|
|
|
Buffer* oldbuf = &context.buffer();
|
2012-05-07 05:13:34 +02:00
|
|
|
if (not force_reload)
|
2015-04-23 21:15:17 +02:00
|
|
|
buffer = buffer_manager.get_buffer_ifp(name);
|
2012-05-07 05:13:34 +02:00
|
|
|
if (not buffer)
|
2012-08-07 23:20:11 +02:00
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("scratch"))
|
2013-04-11 23:09:17 +02:00
|
|
|
{
|
2015-04-23 21:15:17 +02:00
|
|
|
if (Buffer* buf = buffer_manager.get_buffer_ifp(name))
|
|
|
|
{
|
|
|
|
buffer_manager.delete_buffer(*buf);
|
|
|
|
if (buf == oldbuf)
|
|
|
|
oldbuf = nullptr;
|
|
|
|
}
|
2012-11-20 19:47:56 +01:00
|
|
|
buffer = new Buffer(name, Buffer::Flags::None);
|
2013-04-11 23:09:17 +02:00
|
|
|
}
|
2015-03-14 20:16:46 +01:00
|
|
|
else if (auto fifo = parser.get_switch("fifo"))
|
|
|
|
buffer = open_fifo(name, *fifo, (bool)parser.get_switch("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)
|
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("existing"))
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("unable to open '{}'", name));
|
2014-07-31 23:10:01 +02:00
|
|
|
|
2015-06-01 22:15:59 +02:00
|
|
|
context.print_status({ format("new file '{}'", name),
|
|
|
|
get_face("StatusLine") });
|
2014-07-31 23:10:01 +02:00
|
|
|
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
|
|
|
|
2015-04-23 21:15:17 +02:00
|
|
|
if (oldbuf)
|
|
|
|
buffer_manager.set_last_used_buffer(*oldbuf);
|
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();
|
2015-04-19 16:12:16 +02:00
|
|
|
context.selections_write_only() = { 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{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "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" } },
|
|
|
|
{ "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" } } },
|
|
|
|
ParameterDesc::Flags::None, 0, 3
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2015-03-14 18:30:34 +01:00
|
|
|
const CommandDesc edit_cmd = {
|
|
|
|
"edit",
|
|
|
|
"e",
|
2015-06-19 17:10:16 +02:00
|
|
|
"edit [<switches>] <filename> [<line> [<column>]]: open the given filename in a buffer",
|
2014-02-14 03:21:06 +01:00
|
|
|
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!",
|
2015-06-19 17:10:16 +02:00
|
|
|
"edit! [<switches>] <filename> [<line> [<column>]]: open the given filename in a buffer, "
|
2015-03-14 13:17:43 +01:00
|
|
|
"force reload if needed",
|
2014-02-14 03:21:06 +01:00
|
|
|
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
|
|
|
|
2015-03-14 13:17:43 +01:00
|
|
|
auto 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",
|
2015-03-14 13:17:43 +01:00
|
|
|
"write [filename]: write the current buffer to it's file "
|
|
|
|
"or to [filename] if specified",
|
2014-02-14 03:21:06 +01:00
|
|
|
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",
|
2015-03-14 13:17:43 +01:00
|
|
|
"quit current client, and the kakoune session if the client is the last "
|
|
|
|
"(if not running in daemon mode)",
|
2014-02-14 03:21:06 +01:00
|
|
|
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!",
|
2015-03-14 13:17:43 +01:00
|
|
|
"quit current client, and the kakoune session if the client is the last "
|
|
|
|
"(if not running in daemon mode). force quit even if the client is the "
|
|
|
|
"last and some buffers are not saved.",
|
2014-02-14 03:21:06 +01:00
|
|
|
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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"write current buffer and quit current client, even if other buffers are "
|
|
|
|
"not saved",
|
2014-02-14 03:21:06 +01:00
|
|
|
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)
|
|
|
|
{
|
2015-04-15 02:36:47 +02:00
|
|
|
Buffer* oldbuf = &context.buffer();
|
2014-02-14 03:21:06 +01:00
|
|
|
Buffer& buffer = BufferManager::instance().get_buffer(parser[0]);
|
2014-02-08 02:02:58 +01:00
|
|
|
|
2015-04-15 02:36:47 +02:00
|
|
|
if (&buffer != oldbuf)
|
2014-02-14 03:21:06 +01:00
|
|
|
{
|
2015-04-15 02:36:47 +02:00
|
|
|
BufferManager::instance().set_last_used_buffer(*oldbuf);
|
2014-02-14 03:21:06 +01:00
|
|
|
context.push_jump();
|
|
|
|
context.change_buffer(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-02-12 10:02:09 +01:00
|
|
|
|
2015-04-15 02:43:16 +02:00
|
|
|
template<bool next>
|
|
|
|
void cycle_buffer(const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
Buffer* oldbuf = &context.buffer();
|
|
|
|
auto it = find_if(BufferManager::instance(),
|
|
|
|
[oldbuf](const SafePtr<Buffer>& lhs)
|
|
|
|
{ return lhs.get() == oldbuf; });
|
|
|
|
|
|
|
|
kak_assert(it != BufferManager::instance().end());
|
|
|
|
|
|
|
|
if (not next)
|
2015-04-09 16:14:28 +02:00
|
|
|
{
|
2015-04-15 02:43:16 +02:00
|
|
|
if (it == BufferManager::instance().begin())
|
|
|
|
it = BufferManager::instance().end();
|
2015-04-21 14:33:35 +02:00
|
|
|
--it;
|
2015-04-15 02:43:16 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-13 12:34:21 +02:00
|
|
|
if (++it == BufferManager::instance().end())
|
|
|
|
it = BufferManager::instance().begin();
|
2015-04-15 02:43:16 +02:00
|
|
|
}
|
2015-04-13 12:34:21 +02:00
|
|
|
|
2015-04-15 02:43:16 +02:00
|
|
|
Buffer* newbuf = it->get();
|
2015-04-09 16:14:28 +02:00
|
|
|
|
2015-04-15 02:43:16 +02:00
|
|
|
if (newbuf != oldbuf)
|
|
|
|
{
|
|
|
|
BufferManager::instance().set_last_used_buffer(*oldbuf);
|
|
|
|
context.push_jump();
|
|
|
|
context.change_buffer(*newbuf);
|
2015-04-09 16:14:28 +02:00
|
|
|
}
|
2015-04-15 02:43:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const CommandDesc buffernext_cmd = {
|
|
|
|
"buffernext",
|
|
|
|
"bn",
|
|
|
|
"buffernext: move to the next buffer in the list",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
|
|
|
CommandHelper{},
|
|
|
|
CommandCompleter{},
|
|
|
|
cycle_buffer<true>
|
|
|
|
};
|
|
|
|
|
|
|
|
const CommandDesc bufferprev_cmd = {
|
|
|
|
"bufferprev",
|
|
|
|
"bp",
|
|
|
|
"bufferprev: move to the previous buffer in the list",
|
|
|
|
no_params,
|
|
|
|
CommandFlags::None,
|
|
|
|
CommandHelper{},
|
|
|
|
CommandCompleter{},
|
|
|
|
cycle_buffer<false>
|
2015-04-09 16:14:28 +02: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())
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("buffer '{}' is modified", buffer.name()));
|
2012-05-29 00:51:12 +02:00
|
|
|
|
2012-11-07 14:02:23 +01:00
|
|
|
if (manager.count() == 1)
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("buffer '{}' is the last one", buffer.name()));
|
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",
|
2015-03-14 13:17:43 +01:00
|
|
|
"delbuf [name]: delete current buffer or the buffer named <name> if given",
|
2014-02-14 03:21:06 +01:00
|
|
|
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!",
|
2015-03-14 13:17:43 +01:00
|
|
|
"delbuf! [name]: delete current buffer or the buffer named <name> if "
|
|
|
|
"given, even if the buffer is unsaved",
|
2014-02-14 03:21:06 +01:00
|
|
|
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]))
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("unable to change buffer name to '{}'", parser[0]));
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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
|
|
|
{
|
2015-03-10 20:33:46 +01:00
|
|
|
const bool shared = not arg.empty() and arg[0_byte] == '/';
|
2014-06-15 17:04:38 +02:00
|
|
|
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;
|
2015-03-10 20:33:46 +01:00
|
|
|
if (path[0_byte] == '/')
|
2014-06-15 17:04:38 +02:00
|
|
|
{
|
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",
|
2015-03-14 13:17:43 +01:00
|
|
|
"addhl <type> <type params>...: add an highlighter",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "group", { true, "Set the group in which to put the highlighter. "
|
|
|
|
"If starting with /, search in shared highlighters, "
|
|
|
|
"else search in the current window" } } },
|
|
|
|
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())
|
2015-06-01 22:15:59 +02:00
|
|
|
return format("{}:\n{}", params[0], indent(it->second.docstring));
|
2015-02-19 14:54:03 +01:00
|
|
|
}
|
|
|
|
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
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
auto group_name = parser.get_switch("group");
|
|
|
|
auto& group = group_name ? get_highlighter(context, *group_name)
|
|
|
|
: context.window().highlighters();
|
2014-12-23 23:15:53 +01:00
|
|
|
auto it = registry.find(name);
|
|
|
|
if (it == registry.end())
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("No such highlighter factory '{}'", name));
|
2015-02-19 14:54:03 +01:00
|
|
|
group.add_child(it->second.factory(highlighter_params));
|
2015-06-25 20:12:13 +02:00
|
|
|
|
|
|
|
if (context.has_window())
|
|
|
|
context.window().force_redraw();
|
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>",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{ {}, ParameterDesc::Flags::None, 1, 1 },
|
2014-02-14 03:21:06 +01:00
|
|
|
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()});
|
2015-06-25 20:12:13 +02:00
|
|
|
|
|
|
|
if (context.has_window())
|
|
|
|
context.window().force_redraw();
|
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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"hook <switches> <scope> <hook_name> <command>: add <command> in <scope> "
|
|
|
|
"to be executed on hook <hook_name>\n"
|
2014-06-06 14:58:35 +02:00
|
|
|
"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{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "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)
|
|
|
|
{
|
2015-03-12 21:39:34 +01:00
|
|
|
Regex regex(parser[2].begin(), parser[2].end(),
|
|
|
|
Regex::optimize | Regex::nosubs | Regex::ECMAScript);
|
|
|
|
const 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, {},
|
2015-03-10 20:33:46 +01:00
|
|
|
{ { "hook_param", param.str() } });
|
2014-02-14 03:21:06 +01:00
|
|
|
};
|
2015-03-14 20:16:46 +01:00
|
|
|
auto group = parser.get_switch("group").value_or(StringView{});
|
2015-03-10 20:33:46 +01:00
|
|
|
get_scope(parser[0], context).hooks().add_hook(parser[1], group.str(), 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>",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{ {}, ParameterDesc::Flags::None, 2, 2 },
|
2014-02-14 03:21:06 +01:00
|
|
|
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)
|
|
|
|
{
|
2015-03-12 20:45:05 +01:00
|
|
|
const String& cmd_name = parser[0];
|
|
|
|
auto& cm = CommandManager::instance();
|
2012-06-02 17:49:35 +02:00
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
if (cm.command_defined(cmd_name) and not parser.get_switch("allow-override"))
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("command '{}' already defined", cmd_name));
|
2012-06-02 17:49:35 +02:00
|
|
|
|
2013-11-12 20:38:19 +01:00
|
|
|
CommandFlags flags = CommandFlags::None;
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("hidden"))
|
2013-11-12 20:38:19 +01:00
|
|
|
flags = CommandFlags::Hidden;
|
|
|
|
|
2015-03-12 20:45:05 +01:00
|
|
|
const String& commands = parser[1];
|
2012-05-25 07:07:37 +02:00
|
|
|
Command cmd;
|
2014-02-08 02:02:58 +01:00
|
|
|
ParameterDesc desc;
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("shell-params"))
|
2012-09-09 17:10:53 +02:00
|
|
|
{
|
2015-03-14 18:30:34 +01:00
|
|
|
desc = ParameterDesc{ {}, 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
|
|
|
|
{
|
2015-03-14 18:30:34 +01:00
|
|
|
desc = ParameterDesc{ {}, 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;
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("file-completion"))
|
2012-09-12 14:21:42 +02:00
|
|
|
{
|
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>();
|
2015-03-12 20:45:05 +01:00
|
|
|
return Completions{ 0_byte, pos_in_token,
|
2014-01-26 17:14:02 +01:00
|
|
|
complete_filename(prefix, ignored_files,
|
|
|
|
pos_in_token) };
|
2012-09-12 14:21:42 +02:00
|
|
|
};
|
|
|
|
}
|
2015-03-14 20:16:46 +01:00
|
|
|
else if (parser.get_switch("client-completion"))
|
2014-04-07 22:44:17 +02:00
|
|
|
{
|
|
|
|
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();
|
2015-03-12 20:45:05 +01:00
|
|
|
return Completions{ 0_byte, pos_in_token,
|
2014-04-07 22:44:17 +02:00
|
|
|
cm.complete_client_name(prefix, pos_in_token) };
|
|
|
|
};
|
|
|
|
}
|
2015-03-14 20:16:46 +01:00
|
|
|
else if (parser.get_switch("buffer-completion"))
|
2014-04-07 22:44:17 +02:00
|
|
|
{
|
|
|
|
completer = [](const Context& context, CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
|
|
|
{
|
|
|
|
const String& prefix = params[token_to_complete];
|
2015-03-12 20:45:05 +01:00
|
|
|
return Completions{ 0_byte, pos_in_token,
|
2014-12-23 18:42:17 +01:00
|
|
|
complete_buffer_name(prefix, pos_in_token) };
|
2014-04-07 22:44:17 +02:00
|
|
|
};
|
|
|
|
}
|
2015-03-14 20:16:46 +01:00
|
|
|
else if (auto shell_cmd_opt = parser.get_switch("shell-completion"))
|
2012-05-29 07:22:18 +02:00
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
String shell_cmd = shell_cmd_opt->str();
|
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) }
|
|
|
|
};
|
2015-06-08 14:34:08 +02:00
|
|
|
String output = ShellManager::instance().eval(shell_cmd, context, {},
|
2015-06-08 23:42:51 +02:00
|
|
|
ShellManager::Flags::WaitForStdout,
|
2015-06-08 14:34:08 +02:00
|
|
|
params, vars).first;
|
2015-03-12 20:45:05 +01:00
|
|
|
return Completions{ 0_byte, pos_in_token, split(output, '\n', 0) };
|
2012-05-29 07:22:18 +02:00
|
|
|
};
|
|
|
|
}
|
2015-06-26 14:52:01 +02:00
|
|
|
else if (parser.get_switch("command-completion"))
|
|
|
|
{
|
|
|
|
completer = [](const Context& context, CompletionFlags flags,
|
|
|
|
CommandParameters params,
|
|
|
|
size_t token_to_complete, ByteCount pos_in_token)
|
|
|
|
{
|
|
|
|
return CommandManager::instance().complete(
|
|
|
|
context, flags, params, token_to_complete, pos_in_token);
|
|
|
|
};
|
|
|
|
}
|
2014-06-06 01:17:15 +02:00
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
auto docstring = parser.get_switch("docstring").value_or(StringView{});
|
|
|
|
|
|
|
|
cm.register_command(cmd_name, cmd, docstring.str(), 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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"def <switches> <name> <cmds>: define a command <name> executing <cmds>",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "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" } },
|
|
|
|
{ "file-completion", { false, "complete parameters using filename completion" } },
|
|
|
|
{ "client-completion", { false, "complete parameters using client name completion" } },
|
|
|
|
{ "buffer-completion", { false, "complete parameters using buffer name completion" } },
|
2015-06-26 14:52:01 +02:00
|
|
|
{ "command-completion", { false, "complete parameters using kakoune command completion" } },
|
2015-03-14 18:30:34 +01: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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"alias <scope> <alias> <command>: alias <alias> to <command> in <scope>\n",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{{}, ParameterDesc::Flags::None, 3, 3},
|
2014-10-30 00:22:54 +01:00
|
|
|
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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"unalias <scope> <alias> [<expected>]: remove <alias> from <scope>\n"
|
|
|
|
"If <expected> is specified, remove <alias> only if its value is <expected>",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{{}, ParameterDesc::Flags::None, 2, 3},
|
2014-10-30 00:22:54 +01:00
|
|
|
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{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "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);
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("debug"))
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(message);
|
2014-03-31 21:07:02 +02:00
|
|
|
else
|
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
auto face = get_face(parser.get_switch("color").value_or("StatusLine").str());
|
2014-07-11 01:27:04 +02:00
|
|
|
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"
|
2015-03-02 16:38:05 +01:00
|
|
|
"existing commands: info, buffers, options, memory, shared-strings",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{{}, 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")
|
|
|
|
{
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(format("pid: {}", getpid()));
|
|
|
|
write_to_debug_buffer(format("session: {}", Server::instance().session()));
|
2014-03-31 21:07:35 +02:00
|
|
|
}
|
2014-11-28 14:18:08 +01:00
|
|
|
else if (parser[0] == "buffers")
|
2014-09-22 20:19:34 +02:00
|
|
|
{
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer("Buffers:");
|
2014-09-22 20:19:34 +02:00
|
|
|
for (auto& buffer : BufferManager::instance())
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(buffer->debug_description());
|
2014-09-22 20:19:34 +02:00
|
|
|
}
|
2014-11-28 14:18:08 +01:00
|
|
|
else if (parser[0] == "options")
|
2014-11-26 14:27:26 +01:00
|
|
|
{
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer("Options:");
|
2014-11-26 14:27:26 +01:00
|
|
|
for (auto& option : context.options().flatten_options())
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(format(" * {}: {}", option->name(), option->get_as_string()));
|
2014-11-26 14:27:26 +01:00
|
|
|
}
|
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-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer("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-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(format(" {}: {}", domain_name((MemoryDomain)domain), count));
|
2015-01-12 20:46:40 +01:00
|
|
|
}
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(format(" Total: {}", total));
|
2015-01-14 20:16:32 +01:00
|
|
|
#if defined(__GLIBC__) || defined(__CYGWIN__)
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(format(" Malloced: {}", 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
|
2015-03-31 00:56:33 +02:00
|
|
|
throw runtime_error(format("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
|
|
|
{
|
2015-06-05 14:52:56 +02:00
|
|
|
String file_content = read_file(parse_filename(parser[0]), true);
|
2014-02-14 03:21:06 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
CommandManager::instance().execute(file_content, context);
|
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& err)
|
|
|
|
{
|
2015-06-06 12:54:48 +02:00
|
|
|
write_to_debug_buffer(format("{}:{}", 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{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "add", { false, "add to option rather than replacing it" } } },
|
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart, 3, 3
|
2014-02-14 03:21:06 +01:00
|
|
|
},
|
|
|
|
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())
|
2015-06-01 22:15:59 +02:00
|
|
|
return format("{}: {}", params[1], docstring);
|
2015-02-08 20:04:20 +01:00
|
|
|
}
|
|
|
|
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]);
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("add"))
|
2014-02-14 03:21:06 +01:00
|
|
|
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"
|
2015-03-14 13:17:43 +01:00
|
|
|
"set its initial value to <value> if given and 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{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "hidden", { false, "do not display option name when completing" } },
|
|
|
|
{ "docstring", { true, "specify option description" } } },
|
|
|
|
ParameterDesc::Flags::SwitchesOnlyAtStart, 2, 3
|
2014-02-14 03:21:06 +01:00
|
|
|
},
|
|
|
|
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;
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("hidden"))
|
2014-04-12 21:03:26 +02:00
|
|
|
flags = OptionFlags::Hidden;
|
2014-02-14 03:21:06 +01:00
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
auto docstring = parser.get_switch("docstring").value_or(StringView{}).str();
|
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
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("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;
|
2015-07-01 17:47:42 +02:00
|
|
|
if (prefix_match("object", str)) return KeymapMode::Object;
|
2013-10-25 01:01:17 +02:00
|
|
|
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"map <scope> <mode> <key> <keys>: map <key> to <keys> in given mode in <scope>.\n"
|
|
|
|
"<mode> can be:\n"
|
2014-02-14 03:21:06 +01:00
|
|
|
" 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"
|
2015-07-01 17:47:42 +02:00
|
|
|
" user\n"
|
|
|
|
" object\n",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{{}, ParameterDesc::Flags::None, 4, 4},
|
2014-02-14 03:21:06 +01:00
|
|
|
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-07-01 17:47:42 +02:00
|
|
|
constexpr const char* modes[] = { "normal", "insert", "menu", "prompt", "goto", "view", "user", "object" };
|
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 = {
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "client", { true, "run in given client context" } },
|
|
|
|
{ "try-client", { true, "run in given client context if it exists, or else in the current one" } },
|
|
|
|
{ "buffer", { true, "run in a disposable context for each given buffer in the comma separated list argument" } },
|
|
|
|
{ "draft", { false, "run in a disposable context" } },
|
|
|
|
{ "no-hooks", { false, "disable hooks" } },
|
|
|
|
{ "with-maps", { false, "use user defined key mapping when executing keys" } },
|
|
|
|
{ "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); }
|
|
|
|
|
2015-05-09 20:20:11 +02:00
|
|
|
private:
|
2014-07-08 21:24:51 +02:00
|
|
|
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
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
const bool disable_hooks = parser.get_switch("no-hooks") or
|
2014-12-05 14:47:09 +01:00
|
|
|
context.user_hooks_support().is_disabled();
|
2015-03-14 20:16:46 +01:00
|
|
|
const bool disable_keymaps = not parser.get_switch("with-maps");
|
2014-05-25 18:36:12 +02:00
|
|
|
|
2013-12-07 14:44:23 +01:00
|
|
|
ClientManager& cm = ClientManager::instance();
|
2015-03-14 20:16:46 +01:00
|
|
|
if (auto bufnames = parser.get_switch("buffer"))
|
2014-02-19 03:59:41 +01:00
|
|
|
{
|
2015-04-21 14:40:14 +02:00
|
|
|
auto context_wrap_for_buffer = [&](Buffer& buffer) {
|
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);
|
2015-04-21 14:45:10 +02:00
|
|
|
ScopedDisable disable_history{c.history_support()};
|
2014-12-05 15:01:07 +01:00
|
|
|
|
|
|
|
func(parser, c);
|
2015-04-21 14:40:14 +02:00
|
|
|
};
|
|
|
|
if (*bufnames == "*")
|
|
|
|
for (auto buffer : BufferManager::instance())
|
|
|
|
context_wrap_for_buffer(*buffer);
|
|
|
|
else
|
|
|
|
for (auto& name : split(*bufnames, ','))
|
|
|
|
context_wrap_for_buffer(BufferManager::instance().get_buffer(name));
|
2014-02-19 03:59:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-07 14:44:23 +01:00
|
|
|
Context* real_context = &context;
|
2015-03-14 20:16:46 +01:00
|
|
|
if (auto client_name = parser.get_switch("client"))
|
|
|
|
real_context = &cm.get_client(*client_name).context();
|
|
|
|
else if (auto client_name = parser.get_switch("try-client"))
|
2013-12-07 14:44:23 +01:00
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
if (Client* client = cm.get_client_ifp(*client_name))
|
2013-12-07 14:44:23 +01:00
|
|
|
real_context = &client->context();
|
|
|
|
}
|
2013-01-17 13:58:09 +01:00
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("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);
|
2015-04-21 14:45:10 +02:00
|
|
|
ScopedDisable disable_history{c.history_support()};
|
2014-07-24 20:18:39 +02:00
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("itersel"))
|
2013-11-06 00:50:44 +01:00
|
|
|
{
|
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)
|
|
|
|
{
|
2015-04-19 16:12:16 +02:00
|
|
|
c.selections_write_only() = SelectionList{ sels.buffer(), sel, sels.timestamp() };
|
2014-12-05 15:01:07 +01:00
|
|
|
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
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
if (parser.get_switch("itersel"))
|
2013-11-06 00:50:44 +01:00
|
|
|
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);
|
2015-04-21 14:45:10 +02:00
|
|
|
ScopedDisable disable_history{real_context->history_support()};
|
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
|
|
|
}
|
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) {
|
2015-06-01 22:15:59 +02:00
|
|
|
String command = join(parser, ' ', false);
|
2014-02-14 03:21:06 +01:00
|
|
|
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{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "init", { true, "set initial prompt content" } } },
|
2014-04-26 16:09:07 +02:00
|
|
|
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");
|
2015-03-10 20:33:46 +01:00
|
|
|
const char reg = params[1][0_byte];
|
2014-04-13 15:15:34 +02:00
|
|
|
const String& command = params[2];
|
2015-03-14 20:16:46 +01:00
|
|
|
auto initstr = params.get_switch("init").value_or(StringView{});
|
2014-04-26 16:09:07 +02:00
|
|
|
|
2014-04-13 15:15:34 +02:00
|
|
|
context.input_handler().prompt(
|
2015-03-14 20:16:46 +01:00
|
|
|
params[0], initstr.str(), 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-03-10 20:33:46 +01:00
|
|
|
RegisterManager::instance()[reg] = ConstArrayView<String>(str.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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"menu <switches> <name1> <commands1> <name2> <commands2>...: display a "
|
|
|
|
"menu and execute commands for the selected item",
|
2014-02-14 03:21:06 +01:00
|
|
|
ParameterDesc{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "auto-single", { false, "instantly validate if only one item is available" } },
|
|
|
|
{ "select-cmds", { false, "each item specify an additional command to run when selected" } } }
|
2014-02-14 03:21:06 +01:00
|
|
|
},
|
|
|
|
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
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
const bool with_select_cmds = (bool)parser.get_switch("select-cmds");
|
2014-02-14 03:21:06 +01:00
|
|
|
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
|
|
|
|
2015-03-14 20:16:46 +01:00
|
|
|
if (count == modulo and parser.get_switch("auto-single"))
|
2014-02-14 03:21:06 +01:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-04-04 14:10:39 +02:00
|
|
|
const CommandDesc onkey_cmd = {
|
|
|
|
"onkey",
|
|
|
|
nullptr,
|
|
|
|
"onkey <register> <command>: wait for next user key, store it in <register> and execute <command>",
|
|
|
|
ParameterDesc{ {}, ParameterDesc::Flags::None, 2, 2 },
|
|
|
|
CommandFlags::None,
|
|
|
|
CommandHelper{},
|
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
|
|
|
String reg = parser[0];
|
|
|
|
String command = parser[1];
|
|
|
|
context.input_handler().on_next_key(KeymapMode::None,
|
|
|
|
[=](Key key, Context& context) {
|
|
|
|
RegisterManager::instance()[reg] = key_to_str(key);
|
|
|
|
CommandManager::instance().execute(command, context);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-02-14 03:21:06 +01:00
|
|
|
const CommandDesc info_cmd = {
|
|
|
|
"info",
|
|
|
|
nullptr,
|
|
|
|
"info <switches> <params>...: display an info box with the params as content",
|
|
|
|
ParameterDesc{
|
2015-03-14 18:30:34 +01:00
|
|
|
{ { "anchor", { true, "set info anchoring <line>.<column>" } },
|
|
|
|
{ "placement", { true, "set placement relative to anchor (above, below)" } },
|
|
|
|
{ "title", { true, "set info title" } } },
|
2014-02-14 03:21:06 +01:00
|
|
|
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;
|
2015-03-14 20:16:46 +01:00
|
|
|
if (auto anchor = parser.get_switch("anchor"))
|
2014-02-14 03:21:06 +01:00
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
auto dot = find(*anchor, '.');
|
|
|
|
if (dot == anchor->end())
|
2014-10-31 22:49:36 +01:00
|
|
|
throw runtime_error("expected <line>.<column> for anchor");
|
2015-03-14 20:16:46 +01:00
|
|
|
ByteCoord coord{str_to_int({anchor->begin(), dot})-1,
|
|
|
|
str_to_int({dot+1, anchor->end()})-1};
|
2014-10-31 22:49:36 +01:00
|
|
|
pos = context.window().display_position(coord);
|
2014-11-08 18:59:38 +01:00
|
|
|
style = InfoStyle::Inline;
|
2015-03-14 20:16:46 +01:00
|
|
|
if (auto placement = parser.get_switch("placement"))
|
2014-11-10 14:28:06 +01:00
|
|
|
{
|
2015-03-14 20:16:46 +01:00
|
|
|
if (*placement == "above")
|
2014-11-10 14:28:06 +01:00
|
|
|
style = InfoStyle::InlineAbove;
|
2015-03-14 20:16:46 +01:00
|
|
|
else if (*placement == "below")
|
2014-11-10 14:28:06 +01:00
|
|
|
style = InfoStyle::InlineBelow;
|
|
|
|
else
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("invalid placement '{}'", *placement));
|
2014-11-10 14:28:06 +01:00
|
|
|
}
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
2015-03-14 20:16:46 +01:00
|
|
|
auto title = parser.get_switch("title").value_or(StringView{});
|
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,
|
2015-03-14 13:17:43 +01:00
|
|
|
"try <cmds> [catch <error_cmds>]: execute <cmds> in current context.\n"
|
|
|
|
"if an error is raised and <error_cmds> is specified, execute it; "
|
2014-02-14 03:21:06 +01:00
|
|
|
"The error is not propagated further.",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{{}, ParameterDesc::Flags::None, 1, 3},
|
2014-02-14 03:21:06 +01:00
|
|
|
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,
|
2015-06-03 23:10:37 +02:00
|
|
|
"face <name> <facespec>: set face <name> to refer to <facespec>\n"
|
|
|
|
"\n"
|
|
|
|
"facespec format is <fg color>[,<bg color>][+<attributes>]\n"
|
|
|
|
"colors are either a color name, or rgb:###### values.\n"
|
|
|
|
"attributes is a combination of:\n"
|
|
|
|
" u: underline, r: reverse, b: bold, B: blink, d: dim\n"
|
|
|
|
"facespec can as well just be the name of another face" ,
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{{}, ParameterDesc::Flags::None, 2, 2},
|
2014-02-14 03:21:06 +01:00
|
|
|
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);
|
2015-06-30 20:12:25 +02:00
|
|
|
|
|
|
|
for (auto& client : ClientManager::instance())
|
|
|
|
client->window().force_redraw();
|
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])
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("client name '{}' is not unique", parser[0]));
|
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 set_register_cmd = {
|
|
|
|
"reg",
|
|
|
|
nullptr,
|
|
|
|
"reg <name> <value>: set register <name> to <value>",
|
2015-03-14 18:30:34 +01:00
|
|
|
ParameterDesc{{}, ParameterDesc::Flags::None, 2, 2},
|
2014-02-14 03:21:06 +01:00
|
|
|
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-03-09 14:48:41 +01:00
|
|
|
RegisterManager::instance()[parser[0]] = ConstArrayView<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
|
|
|
|
2015-04-13 16:21:26 +02:00
|
|
|
const CommandDesc select_cmd = {
|
|
|
|
"select",
|
|
|
|
nullptr,
|
|
|
|
"select <selections_desc>: select given selections",
|
|
|
|
ParameterDesc{{}, ParameterDesc::Flags::None, 1, 1},
|
|
|
|
CommandFlags::None,
|
|
|
|
CommandHelper{},
|
|
|
|
CommandCompleter{},
|
|
|
|
[](const ParametersParser& parser, Context& context)
|
|
|
|
{
|
2015-04-19 16:12:16 +02:00
|
|
|
context.selections_write_only() = selection_list_from_string(context.buffer(), parser[0]);
|
2015-04-13 16:21:26 +02: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)
|
2015-06-01 22:15:59 +02:00
|
|
|
throw runtime_error(format("cannot change to directory '{}'", parser[0]));
|
2014-02-14 03:21:06 +01:00
|
|
|
}
|
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-03-09 14:48:41 +01:00
|
|
|
ConstArrayView<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;
|
2015-05-07 00:05:44 +02:00
|
|
|
char m_name;
|
2013-02-18 18:57:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-03-09 14:48:41 +01:00
|
|
|
void exec_keys(ConstArrayView<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
|
|
|
}
|
|
|
|
|
|
|
|
void register_commands()
|
|
|
|
{
|
|
|
|
CommandManager& cm = CommandManager::instance();
|
2014-02-14 03:21:06 +01:00
|
|
|
cm.register_command("nop", [](const ParametersParser&, Context&){}, "do nothing", {});
|
|
|
|
|
2015-03-10 14:34:46 +01:00
|
|
|
auto register_command = [&](const CommandDesc& c)
|
|
|
|
{
|
|
|
|
cm.register_command(c.name, c.func, c.docstring, c.params, c.flags, c.helper, c.completer);
|
|
|
|
if (c.alias)
|
|
|
|
GlobalScope::instance().aliases().add_alias(c.alias, c.name);
|
|
|
|
};
|
|
|
|
|
|
|
|
register_command(edit_cmd);
|
|
|
|
register_command(force_edit_cmd);
|
|
|
|
register_command(write_cmd);
|
|
|
|
register_command(writeall_cmd);
|
|
|
|
register_command(writeall_quit_cmd);
|
|
|
|
register_command(quit_cmd);
|
|
|
|
register_command(force_quit_cmd);
|
|
|
|
register_command(write_quit_cmd);
|
|
|
|
register_command(force_write_quit_cmd);
|
|
|
|
register_command(buffer_cmd);
|
2015-04-15 02:43:16 +02:00
|
|
|
register_command(buffernext_cmd);
|
|
|
|
register_command(bufferprev_cmd);
|
2015-03-10 14:34:46 +01:00
|
|
|
register_command(delbuf_cmd);
|
|
|
|
register_command(force_delbuf_cmd);
|
|
|
|
register_command(namebuf_cmd);
|
|
|
|
register_command(add_highlighter_cmd);
|
|
|
|
register_command(rm_highlighter_cmd);
|
|
|
|
register_command(add_hook_cmd);
|
|
|
|
register_command(rm_hook_cmd);
|
|
|
|
register_command(define_command_cmd);
|
|
|
|
register_command(alias_cmd);
|
|
|
|
register_command(unalias_cmd);
|
|
|
|
register_command(echo_cmd);
|
|
|
|
register_command(debug_cmd);
|
|
|
|
register_command(source_cmd);
|
|
|
|
register_command(set_option_cmd);
|
|
|
|
register_command(declare_option_cmd);
|
|
|
|
register_command(map_key_cmd);
|
|
|
|
register_command(exec_string_cmd);
|
|
|
|
register_command(eval_string_cmd);
|
|
|
|
register_command(prompt_cmd);
|
|
|
|
register_command(menu_cmd);
|
2015-04-04 14:10:39 +02:00
|
|
|
register_command(onkey_cmd);
|
2015-03-10 14:34:46 +01:00
|
|
|
register_command(info_cmd);
|
|
|
|
register_command(try_catch_cmd);
|
|
|
|
register_command(face_cmd);
|
|
|
|
register_command(set_client_name_cmd);
|
|
|
|
register_command(set_register_cmd);
|
2015-04-13 16:21:26 +02:00
|
|
|
register_command(select_cmd);
|
2015-03-10 14:34:46 +01:00
|
|
|
register_command(change_working_directory_cmd);
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
2015-03-10 14:34:46 +01:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|