2013-04-12 14:28:13 +02:00
|
|
|
#include "normal.hh"
|
|
|
|
|
|
|
|
#include "buffer.hh"
|
|
|
|
#include "buffer_manager.hh"
|
|
|
|
#include "client_manager.hh"
|
|
|
|
#include "color_registry.hh"
|
|
|
|
#include "command_manager.hh"
|
|
|
|
#include "commands.hh"
|
|
|
|
#include "context.hh"
|
|
|
|
#include "file.hh"
|
|
|
|
#include "option_manager.hh"
|
|
|
|
#include "register_manager.hh"
|
|
|
|
#include "selectors.hh"
|
|
|
|
#include "shell_manager.hh"
|
|
|
|
#include "string.hh"
|
|
|
|
#include "window.hh"
|
2013-05-16 22:20:14 +02:00
|
|
|
#include "user_interface.hh"
|
2013-06-05 19:20:21 +02:00
|
|
|
#include "utf8_iterator.hh"
|
2013-04-12 14:28:13 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2013-12-14 14:21:07 +01:00
|
|
|
template<SelectMode mode, typename T>
|
|
|
|
class Select
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
constexpr Select(T t) : m_func(t) {}
|
|
|
|
|
|
|
|
void operator() (Context& context, int)
|
|
|
|
{
|
2013-12-14 19:38:14 +01:00
|
|
|
auto& buffer = context.buffer();
|
2013-12-15 15:25:23 +01:00
|
|
|
auto& selections = context.selections();
|
2013-12-14 19:38:14 +01:00
|
|
|
if (mode == SelectMode::Append)
|
2013-12-14 14:21:07 +01:00
|
|
|
{
|
2013-12-14 19:38:14 +01:00
|
|
|
auto& sel = selections.main();
|
|
|
|
auto res = m_func(buffer, sel);
|
|
|
|
if (res.captures().empty())
|
|
|
|
res.captures() = sel.captures();
|
|
|
|
selections.push_back(res);
|
|
|
|
selections.set_main_index(selections.size() - 1);
|
|
|
|
}
|
|
|
|
else if (mode == SelectMode::ReplaceMain)
|
|
|
|
{
|
|
|
|
auto& sel = selections.main();
|
|
|
|
auto res = m_func(buffer, sel);
|
|
|
|
sel.first() = res.first();
|
|
|
|
sel.last() = res.last();
|
|
|
|
if (not res.captures().empty())
|
|
|
|
sel.captures() = std::move(res.captures());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
2013-12-14 14:21:07 +01:00
|
|
|
{
|
2013-12-14 19:38:14 +01:00
|
|
|
auto res = m_func(buffer, sel);
|
|
|
|
if (mode == SelectMode::Extend)
|
|
|
|
sel.merge_with(res);
|
|
|
|
else
|
2013-12-14 14:21:07 +01:00
|
|
|
{
|
2013-12-14 19:38:14 +01:00
|
|
|
sel.first() = res.first();
|
|
|
|
sel.last() = res.last();
|
2013-12-14 14:21:07 +01:00
|
|
|
}
|
2013-12-14 19:38:14 +01:00
|
|
|
if (not res.captures().empty())
|
|
|
|
sel.captures() = std::move(res.captures());
|
2013-12-14 14:21:07 +01:00
|
|
|
}
|
2013-12-14 19:38:14 +01:00
|
|
|
}
|
|
|
|
selections.sort_and_merge_overlapping();
|
|
|
|
selections.check_invariant();
|
2013-12-14 14:21:07 +01:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
T m_func;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<SelectMode mode = SelectMode::Replace, typename T>
|
|
|
|
constexpr Select<mode, T> select(T func) { return Select<mode, T>(func); }
|
|
|
|
|
2013-12-14 19:38:14 +01:00
|
|
|
template<SelectMode mode = SelectMode::Replace>
|
|
|
|
void select_coord(BufferCoord coord, SelectionList& selections)
|
|
|
|
{
|
|
|
|
if (mode == SelectMode::Replace)
|
|
|
|
selections = SelectionList { coord };
|
|
|
|
else if (mode == SelectMode::Extend)
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
|
|
|
sel.last() = coord;
|
|
|
|
selections.sort_and_merge_overlapping();
|
|
|
|
}
|
|
|
|
}
|
2013-12-14 14:21:07 +01:00
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
template<InsertMode mode>
|
2013-10-10 22:22:20 +02:00
|
|
|
void insert(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().insert(mode);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void repeat_insert(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().repeat_last_insert();
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 23:51:16 +02:00
|
|
|
bool show_auto_info_ifn(const String& title, const String& info,
|
|
|
|
const Context& context)
|
2013-05-16 22:20:14 +02:00
|
|
|
{
|
|
|
|
if (not context.options()["autoinfo"].get<bool>() or not context.has_ui())
|
|
|
|
return false;
|
2013-08-29 14:50:24 +02:00
|
|
|
ColorPair col = get_color("Information");
|
2013-05-16 22:20:14 +02:00
|
|
|
DisplayCoord pos = context.window().dimensions();
|
|
|
|
pos.column -= 1;
|
2013-10-10 23:51:16 +02:00
|
|
|
context.ui().info_show(title, info, pos , col, MenuStyle::Prompt);
|
2013-05-16 22:20:14 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-07-27 15:58:06 +02:00
|
|
|
template<typename Cmd>
|
2013-10-10 23:51:16 +02:00
|
|
|
void on_next_key_with_autoinfo(const Context& context, Cmd cmd,
|
|
|
|
const String& title, const String& info)
|
2013-07-27 15:58:06 +02:00
|
|
|
{
|
2013-10-10 23:51:16 +02:00
|
|
|
const bool hide = show_auto_info_ifn(title, info, context);
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().on_next_key([hide,cmd](Key key, Context& context) mutable {
|
2013-07-27 15:58:06 +02:00
|
|
|
if (hide)
|
|
|
|
context.ui().info_hide();
|
|
|
|
cmd(key, context);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
template<SelectMode mode>
|
2013-10-10 22:22:20 +02:00
|
|
|
void goto_commands(Context& context, int line)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-10-10 22:22:20 +02:00
|
|
|
if (line != 0)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
context.push_jump();
|
2013-12-15 15:25:23 +01:00
|
|
|
select_coord<mode>(LineCount{line - 1}, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
if (context.has_window())
|
|
|
|
context.window().center_selection();
|
|
|
|
}
|
|
|
|
else
|
2013-05-16 22:20:14 +02:00
|
|
|
{
|
2013-07-27 15:58:06 +02:00
|
|
|
on_next_key_with_autoinfo(context, [](Key key, Context& context) {
|
2013-04-12 14:28:13 +02:00
|
|
|
if (key.modifiers != Key::Modifiers::None)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Editor& editor = context.editor();
|
|
|
|
switch (tolower(key.key))
|
|
|
|
{
|
|
|
|
case 'g':
|
|
|
|
case 'k':
|
|
|
|
context.push_jump();
|
2013-12-15 15:25:23 +01:00
|
|
|
select_coord<mode>(BufferCoord{0,0}, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'l':
|
2013-12-14 14:21:07 +01:00
|
|
|
select<mode>(select_to_eol)(context, 0);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'h':
|
2013-12-14 14:21:07 +01:00
|
|
|
select<mode>(select_to_eol_reverse)(context, 0);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'j':
|
|
|
|
{
|
|
|
|
context.push_jump();
|
2013-12-15 15:25:23 +01:00
|
|
|
select_coord<mode>({editor.buffer().line_count() - 1, 0}, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'e':
|
|
|
|
context.push_jump();
|
2013-12-15 15:25:23 +01:00
|
|
|
select_coord<mode>(editor.buffer().back_coord(), context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
if (context.has_window())
|
|
|
|
{
|
|
|
|
auto line = context.window().position().line;
|
2013-12-15 15:25:23 +01:00
|
|
|
select_coord<mode>(line, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
if (context.has_window())
|
|
|
|
{
|
|
|
|
auto& window = context.window();
|
|
|
|
auto line = window.position().line + window.dimensions().line - 1;
|
2013-12-15 15:25:23 +01:00
|
|
|
select_coord<mode>(line, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
if (context.has_window())
|
|
|
|
{
|
|
|
|
auto& window = context.window();
|
|
|
|
auto line = window.position().line + window.dimensions().line / 2;
|
2013-12-15 15:25:23 +01:00
|
|
|
select_coord<mode>(line, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
{
|
|
|
|
auto& buffer_manager = BufferManager::instance();
|
|
|
|
auto it = buffer_manager.begin();
|
|
|
|
if (it->get() == &context.buffer() and ++it == buffer_manager.end())
|
|
|
|
break;
|
|
|
|
context.push_jump();
|
|
|
|
auto& client_manager = ClientManager::instance();
|
|
|
|
context.change_editor(client_manager.get_unused_window_for_buffer(**it));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'f':
|
|
|
|
{
|
2013-12-15 15:25:23 +01:00
|
|
|
const Range& sel = context.selections().main();
|
2013-06-03 18:58:09 +02:00
|
|
|
const Buffer& buffer = context.buffer();
|
|
|
|
String filename = content(buffer, sel);
|
2013-05-21 14:01:04 +02:00
|
|
|
static constexpr char forbidden[] = { '\'', '\\', '\0' };
|
2013-04-12 14:28:13 +02:00
|
|
|
for (auto c : forbidden)
|
|
|
|
if (contains(filename, c))
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto paths = context.options()["path"].get<std::vector<String>>();
|
2013-06-03 18:58:09 +02:00
|
|
|
const String& buffer_name = buffer.name();
|
2013-04-12 14:28:13 +02:00
|
|
|
auto it = find(reversed(buffer_name), '/');
|
|
|
|
if (it != buffer_name.rend())
|
|
|
|
paths.insert(paths.begin(), String{buffer_name.begin(), it.base()});
|
|
|
|
|
|
|
|
String path = find_file(filename, paths);
|
2013-05-21 14:01:04 +02:00
|
|
|
if (path.empty())
|
|
|
|
throw runtime_error("unable to find file '" + filename + "'");
|
|
|
|
CommandManager::instance().execute("edit '" + path + "'", context);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-10 23:51:16 +02:00
|
|
|
}, "goto",
|
|
|
|
"g,k: buffer top \n"
|
|
|
|
"l: line end \n"
|
|
|
|
"h: line begin \n"
|
|
|
|
"j: buffer bottom\n"
|
|
|
|
"e: buffer end \n"
|
|
|
|
"t: window top \n"
|
|
|
|
"b: window bottom\n"
|
|
|
|
"c: window center\n"
|
|
|
|
"a: last buffer \n"
|
|
|
|
"f: file \n");
|
2013-05-16 22:20:14 +02:00
|
|
|
}
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void view_commands(Context& context, int param)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-10-10 22:22:20 +02:00
|
|
|
on_next_key_with_autoinfo(context, [param](Key key, Context& context) {
|
2013-04-12 14:28:13 +02:00
|
|
|
if (key.modifiers != Key::Modifiers::None or not context.has_window())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Window& window = context.window();
|
|
|
|
switch (tolower(key.key))
|
|
|
|
{
|
2013-04-16 13:54:04 +02:00
|
|
|
case 'v':
|
2013-04-12 14:28:13 +02:00
|
|
|
case 'c':
|
|
|
|
context.window().center_selection();
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
context.window().display_selection_at(0);
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
context.window().display_selection_at(window.dimensions().line-1);
|
|
|
|
break;
|
2013-07-26 19:52:05 +02:00
|
|
|
case 'h':
|
2013-10-10 22:22:20 +02:00
|
|
|
context.window().scroll(-std::max<CharCount>(1, param));
|
2013-07-26 19:52:05 +02:00
|
|
|
break;
|
2013-04-12 14:28:13 +02:00
|
|
|
case 'j':
|
2013-10-10 22:22:20 +02:00
|
|
|
context.window().scroll( std::max<LineCount>(1, param));
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'k':
|
2013-10-10 22:22:20 +02:00
|
|
|
context.window().scroll(-std::max<LineCount>(1, param));
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
2013-07-24 01:38:30 +02:00
|
|
|
case 'l':
|
2013-10-10 22:22:20 +02:00
|
|
|
context.window().scroll( std::max<CharCount>(1, param));
|
2013-07-24 01:38:30 +02:00
|
|
|
break;
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
2013-10-10 23:51:16 +02:00
|
|
|
}, "view",
|
|
|
|
"v,c: center cursor \n"
|
|
|
|
"t: cursor on top \n"
|
|
|
|
"b: cursor on bottom\n"
|
|
|
|
"h: scroll left \n"
|
|
|
|
"j: scroll down \n"
|
|
|
|
"k: scroll up \n"
|
|
|
|
"l: scroll right \n");
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void replace_with_char(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-07-27 15:58:06 +02:00
|
|
|
on_next_key_with_autoinfo(context, [](Key key, Context& context) {
|
2013-07-02 15:03:20 +02:00
|
|
|
if (not isprint(key.key))
|
|
|
|
return;
|
2013-04-12 14:28:13 +02:00
|
|
|
Editor& editor = context.editor();
|
2013-12-15 15:25:23 +01:00
|
|
|
SelectionList sels = context.selections();
|
|
|
|
auto restore_sels = on_scope_end([&]{ context.selections() = std::move(sels); });
|
|
|
|
select_all_matches(editor.buffer(), context.selections(), Regex{"."});
|
2013-04-12 14:28:13 +02:00
|
|
|
editor.insert(codepoint_to_str(key.key), InsertMode::Replace);
|
2013-10-10 23:51:16 +02:00
|
|
|
}, "replace with char", "enter char to replace with\n");
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-07-12 14:55:30 +02:00
|
|
|
Codepoint to_lower(Codepoint cp) { return tolower(cp); }
|
|
|
|
Codepoint to_upper(Codepoint cp) { return toupper(cp); }
|
|
|
|
|
|
|
|
Codepoint swap_case(Codepoint cp)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-04-17 19:31:31 +02:00
|
|
|
Codepoint res = std::tolower(cp);
|
|
|
|
return res == cp ? std::toupper(cp) : res;
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-07-12 14:55:30 +02:00
|
|
|
template<Codepoint (*func)(Codepoint)>
|
2013-10-10 22:22:20 +02:00
|
|
|
void for_each_char(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
Editor& editor = context.editor();
|
|
|
|
std::vector<String> sels = editor.selections_content();
|
|
|
|
for (auto& sel : sels)
|
|
|
|
{
|
|
|
|
for (auto& c : sel)
|
2013-07-12 14:55:30 +02:00
|
|
|
c = func(c);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
editor.insert(sels, InsertMode::Replace);
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void command(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().prompt(
|
2013-04-12 14:28:13 +02:00
|
|
|
":", get_color("Prompt"),
|
2013-11-04 22:53:10 +01:00
|
|
|
std::bind(&CommandManager::complete, &CommandManager::instance(), _1, _2, _3, _4),
|
2013-04-12 14:28:13 +02:00
|
|
|
[](const String& cmdline, PromptEvent event, Context& context) {
|
2013-12-03 20:48:53 +01:00
|
|
|
if (event == PromptEvent::Validate)
|
|
|
|
CommandManager::instance().execute(cmdline, context);
|
2013-04-12 14:28:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void pipe(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().prompt("pipe:", get_color("Prompt"), complete_nothing,
|
2013-04-12 14:28:13 +02:00
|
|
|
[](const String& cmdline, PromptEvent event, Context& context)
|
|
|
|
{
|
|
|
|
if (event != PromptEvent::Validate)
|
|
|
|
return;
|
|
|
|
|
2013-10-11 01:31:03 +02:00
|
|
|
String real_cmd;
|
|
|
|
if (cmdline.empty())
|
|
|
|
real_cmd = RegisterManager::instance()['|'].values(context)[0];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RegisterManager::instance()['|'] = cmdline;
|
|
|
|
real_cmd = cmdline;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (real_cmd.empty())
|
|
|
|
return;
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
Editor& editor = context.editor();
|
|
|
|
std::vector<String> strings;
|
2013-12-15 15:25:23 +01:00
|
|
|
for (auto& sel : context.selections())
|
2013-07-24 14:38:26 +02:00
|
|
|
{
|
|
|
|
auto str = content(context.buffer(), sel);
|
|
|
|
bool insert_eol = str.back() != '\n';
|
|
|
|
if (insert_eol)
|
|
|
|
str += '\n';
|
2013-10-11 01:31:03 +02:00
|
|
|
str = ShellManager::instance().pipe(str, real_cmd, context,
|
2013-07-24 14:38:26 +02:00
|
|
|
{}, EnvVarMap{});
|
|
|
|
if (insert_eol and str.back() == '\n')
|
|
|
|
str = str.substr(0, str.length()-1);
|
|
|
|
strings.push_back(str);
|
|
|
|
}
|
2013-04-12 14:28:13 +02:00
|
|
|
editor.insert(strings, InsertMode::Replace);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-07-02 14:55:34 +02:00
|
|
|
template<SelectMode mode, Direction direction>
|
2013-10-10 22:22:20 +02:00
|
|
|
void search(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-07-02 14:55:34 +02:00
|
|
|
const char* prompt = direction == Forward ? "search:" : "reverse search:";
|
2013-12-15 15:25:23 +01:00
|
|
|
DynamicSelectionList selections{context.buffer(), context.selections()};
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().prompt(prompt, get_color("Prompt"), complete_nothing,
|
2013-04-12 14:28:13 +02:00
|
|
|
[selections](const String& str, PromptEvent event, Context& context) {
|
|
|
|
try
|
|
|
|
{
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections() = selections;
|
2013-04-12 14:28:13 +02:00
|
|
|
|
|
|
|
if (event == PromptEvent::Abort)
|
|
|
|
return;
|
|
|
|
|
|
|
|
Regex ex{str};
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().set_prompt_colors(get_color("Prompt"));
|
2013-04-12 14:28:13 +02:00
|
|
|
if (event == PromptEvent::Validate)
|
|
|
|
{
|
|
|
|
if (str.empty())
|
|
|
|
ex = Regex{RegisterManager::instance()['/'].values(context)[0]};
|
|
|
|
else
|
|
|
|
RegisterManager::instance()['/'] = str;
|
|
|
|
context.push_jump();
|
|
|
|
}
|
|
|
|
else if (str.empty() or not context.options()["incsearch"].get<bool>())
|
|
|
|
return;
|
|
|
|
|
2013-12-15 15:25:23 +01:00
|
|
|
select_next_match<direction, mode>(context.buffer(), context.selections(), ex);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
if (event == PromptEvent::Validate)
|
|
|
|
throw runtime_error("regex error: "_str + err.what());
|
|
|
|
else
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().set_prompt_colors(get_color("Error"));
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
catch (runtime_error&)
|
|
|
|
{
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections() = selections;
|
2013-04-12 14:28:13 +02:00
|
|
|
// only validation should propagate errors,
|
|
|
|
// incremental search should not.
|
|
|
|
if (event == PromptEvent::Validate)
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-07-02 14:55:34 +02:00
|
|
|
template<SelectMode mode, Direction direction>
|
2013-10-10 22:22:20 +02:00
|
|
|
void search_next(Context& context, int param)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
const String& str = RegisterManager::instance()['/'].values(context)[0];
|
|
|
|
if (not str.empty())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Regex ex{str};
|
|
|
|
do {
|
2013-12-15 15:25:23 +01:00
|
|
|
select_next_match<direction, mode>(context.buffer(), context.selections(), ex);
|
2013-10-10 22:22:20 +02:00
|
|
|
} while (--param > 0);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
throw runtime_error("regex error: "_str + err.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw runtime_error("no search pattern");
|
|
|
|
}
|
|
|
|
|
|
|
|
template<bool smart>
|
2013-10-10 22:22:20 +02:00
|
|
|
void use_selection_as_search_pattern(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
std::vector<String> patterns;
|
2013-12-15 15:25:23 +01:00
|
|
|
auto& sels = context.selections();
|
2013-06-03 18:58:09 +02:00
|
|
|
const auto& buffer = context.buffer();
|
2013-04-12 14:28:13 +02:00
|
|
|
for (auto& sel : sels)
|
|
|
|
{
|
2013-06-05 19:20:21 +02:00
|
|
|
auto begin = utf8::make_iterator(buffer.iterator_at(sel.min()));
|
|
|
|
auto end = utf8::make_iterator(buffer.iterator_at(sel.max()))+1;
|
|
|
|
auto content = "\\Q" + String{begin.base(), end.base()} + "\\E";
|
2013-04-12 14:28:13 +02:00
|
|
|
if (smart)
|
|
|
|
{
|
2013-07-15 14:49:04 +02:00
|
|
|
if (begin == buffer.begin() or (is_word(*begin) and not is_word(*(begin-1))))
|
2013-04-12 14:28:13 +02:00
|
|
|
content = "\\b" + content;
|
2013-06-05 19:20:21 +02:00
|
|
|
if (end == buffer.end() or (is_word(*(end-1)) and not is_word(*end)))
|
2013-04-12 14:28:13 +02:00
|
|
|
content = content + "\\b";
|
|
|
|
}
|
|
|
|
patterns.push_back(std::move(content));
|
|
|
|
}
|
|
|
|
RegisterManager::instance()['/'] = patterns;
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void yank(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
RegisterManager::instance()['"'] = context.editor().selections_content();
|
2013-12-15 15:25:23 +01:00
|
|
|
context.print_status({ "yanked " + to_string(context.selections().size()) +
|
2013-05-13 14:23:07 +02:00
|
|
|
" selections", get_color("Information") });
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void cat_yank(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
auto sels = context.editor().selections_content();
|
|
|
|
String str;
|
|
|
|
for (auto& sel : sels)
|
|
|
|
str += sel;
|
|
|
|
RegisterManager::instance()['"'] = memoryview<String>(str);
|
|
|
|
context.print_status({ "concatenated and yanked " +
|
2013-05-13 14:23:07 +02:00
|
|
|
to_string(sels.size()) + " selections", get_color("Information") });
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void erase_selections(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
RegisterManager::instance()['"'] = context.editor().selections_content();
|
|
|
|
context.editor().erase();
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void change(Context& context, int param)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
RegisterManager::instance()['"'] = context.editor().selections_content();
|
2013-10-10 22:22:20 +02:00
|
|
|
insert<InsertMode::Replace>(context, param);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static InsertMode adapt_for_linewise(InsertMode mode)
|
|
|
|
{
|
|
|
|
if (mode == InsertMode::Append)
|
|
|
|
return InsertMode::InsertAtNextLineBegin;
|
|
|
|
if (mode == InsertMode::Insert)
|
|
|
|
return InsertMode::InsertAtLineBegin;
|
|
|
|
if (mode == InsertMode::Replace)
|
|
|
|
return InsertMode::Replace;
|
|
|
|
|
|
|
|
kak_assert(false);
|
|
|
|
return InsertMode::Insert;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<InsertMode insert_mode>
|
2013-10-10 22:22:20 +02:00
|
|
|
void paste(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
Editor& editor = context.editor();
|
|
|
|
auto strings = RegisterManager::instance()['"'].values(context);
|
|
|
|
InsertMode mode = insert_mode;
|
|
|
|
for (auto& str : strings)
|
|
|
|
{
|
|
|
|
if (not str.empty() and str.back() == '\n')
|
|
|
|
{
|
|
|
|
mode = adapt_for_linewise(mode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
editor.insert(strings, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void regex_prompt(Context& context, const String prompt, T on_validate)
|
|
|
|
{
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().prompt(prompt, get_color("Prompt"), complete_nothing,
|
2013-04-12 14:28:13 +02:00
|
|
|
[=](const String& str, PromptEvent event, Context& context) {
|
|
|
|
if (event == PromptEvent::Validate)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-05-13 14:28:03 +02:00
|
|
|
on_validate(str.empty() ? Regex{} : Regex{str}, context);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
throw runtime_error("regex error: "_str + err.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event == PromptEvent::Change)
|
|
|
|
{
|
|
|
|
const bool ok = Regex{str, boost::regex_constants::no_except}.status() == 0;
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().set_prompt_colors(get_color(ok ? "Prompt" : "Error"));
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void select_regex(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
regex_prompt(context, "select:", [](Regex ex, Context& context) {
|
|
|
|
if (ex.empty())
|
|
|
|
ex = Regex{RegisterManager::instance()['/'].values(context)[0]};
|
|
|
|
else
|
|
|
|
RegisterManager::instance()['/'] = String{ex.str()};
|
2013-05-13 14:28:03 +02:00
|
|
|
if (not ex.empty() and not ex.str().empty())
|
2013-12-15 15:25:23 +01:00
|
|
|
select_all_matches(context.buffer(), context.selections(), ex);
|
2013-04-12 14:28:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void split_regex(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
regex_prompt(context, "split:", [](Regex ex, Context& context) {
|
|
|
|
if (ex.empty())
|
|
|
|
ex = Regex{RegisterManager::instance()['/'].values(context)[0]};
|
|
|
|
else
|
|
|
|
RegisterManager::instance()['/'] = String{ex.str()};
|
2013-05-13 14:28:03 +02:00
|
|
|
if (not ex.empty() and not ex.str().empty())
|
2013-12-15 15:25:23 +01:00
|
|
|
split_selections(context.buffer(), context.selections(), ex);
|
2013-04-12 14:28:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void split_lines(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-12-15 15:25:23 +01:00
|
|
|
auto& selections = context.selections();
|
2013-12-14 19:38:14 +01:00
|
|
|
auto& buffer = context.buffer();
|
|
|
|
SelectionList res;
|
|
|
|
for (auto& sel : selections)
|
|
|
|
{
|
|
|
|
if (sel.first().line == sel.last().line)
|
2013-12-13 00:56:53 +01:00
|
|
|
{
|
2013-12-14 19:38:14 +01:00
|
|
|
res.push_back(std::move(sel));
|
|
|
|
continue;
|
2013-12-13 00:56:53 +01:00
|
|
|
}
|
2013-12-14 19:38:14 +01:00
|
|
|
auto min = sel.min();
|
|
|
|
auto max = sel.max();
|
|
|
|
res.push_back({min, {min.line, buffer[min.line].length()-1}});
|
|
|
|
for (auto line = min.line+1; line < max.line; ++line)
|
|
|
|
res.push_back({line, {line, buffer[line].length()-1}});
|
|
|
|
res.push_back({max.line, max});
|
|
|
|
}
|
2013-12-14 20:25:56 +01:00
|
|
|
res.set_main_index(res.size() - 1);
|
2013-12-14 19:38:14 +01:00
|
|
|
selections = std::move(res);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void join_select_spaces(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-12-14 14:21:07 +01:00
|
|
|
select(select_whole_lines)(context, 0);
|
|
|
|
select<SelectMode::Extend>(select_to_eol)(context, 0);
|
2013-12-14 19:38:14 +01:00
|
|
|
auto& editor = context.editor();
|
|
|
|
auto& buffer = context.buffer();
|
2013-12-15 15:25:23 +01:00
|
|
|
auto& selections = context.selections();
|
|
|
|
select_all_matches(buffer, context.selections(), Regex{"(\n\\h*)+"});
|
2013-12-14 19:38:14 +01:00
|
|
|
// remove last end of line if selected
|
|
|
|
kak_assert(std::is_sorted(selections.begin(), selections.end(),
|
|
|
|
[](const Selection& lhs, const Selection& rhs)
|
|
|
|
{ return lhs.min() < rhs.min(); }));
|
|
|
|
if (not selections.empty() and selections.back().max() == buffer.back_coord())
|
|
|
|
selections.pop_back();
|
2013-04-12 14:28:13 +02:00
|
|
|
editor.insert(" ", InsertMode::Replace);
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void join(Context& context, int param)
|
2013-04-23 18:54:31 +02:00
|
|
|
{
|
|
|
|
Editor& editor = context.editor();
|
2013-12-15 15:25:23 +01:00
|
|
|
DynamicSelectionList sels{editor.buffer(), context.selections()};
|
|
|
|
auto restore_sels = on_scope_end([&]{ context.selections() = std::move(sels); });
|
2013-10-10 22:22:20 +02:00
|
|
|
join_select_spaces(context, param);
|
2013-04-23 18:54:31 +02:00
|
|
|
}
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
template<bool matching>
|
2013-10-10 22:22:20 +02:00
|
|
|
void keep(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
constexpr const char* prompt = matching ? "keep matching:" : "keep not matching:";
|
|
|
|
regex_prompt(context, prompt, [](const Regex& ex, Context& context) {
|
2013-10-26 19:46:21 +02:00
|
|
|
if (ex.empty())
|
|
|
|
return;
|
2013-06-03 18:58:09 +02:00
|
|
|
const Buffer& buffer = context.buffer();
|
2013-04-12 14:28:13 +02:00
|
|
|
SelectionList keep;
|
2013-12-15 15:25:23 +01:00
|
|
|
for (auto& sel : context.selections())
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-06-03 18:58:09 +02:00
|
|
|
if (boost::regex_search(buffer.iterator_at(sel.min()),
|
|
|
|
utf8::next(buffer.iterator_at(sel.max())), ex) == matching)
|
2013-04-12 14:28:13 +02:00
|
|
|
keep.push_back(sel);
|
|
|
|
}
|
|
|
|
if (keep.empty())
|
|
|
|
throw runtime_error("no selections remaining");
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections() = std::move(keep);
|
2013-04-12 14:28:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-10-30 09:45:47 +01:00
|
|
|
template<bool indent_empty = false>
|
2013-10-10 22:22:20 +02:00
|
|
|
void indent(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-10-14 14:47:43 +02:00
|
|
|
CharCount indent_width = context.options()["indentwidth"].get<int>();
|
|
|
|
String indent = indent_width == 0 ? "\t" : String{' ', indent_width};
|
2013-04-12 14:28:13 +02:00
|
|
|
|
2013-12-14 19:38:14 +01:00
|
|
|
auto& editor = context.editor();
|
|
|
|
auto& buffer = context.buffer();
|
2013-12-15 15:25:23 +01:00
|
|
|
DynamicSelectionList sels{editor.buffer(), context.selections()};
|
|
|
|
auto restore_sels = on_scope_end([&]{ context.selections() = std::move(sels); });
|
2013-12-14 19:38:14 +01:00
|
|
|
SelectionList res;
|
2013-12-15 15:25:23 +01:00
|
|
|
for (auto& sel : context.selections())
|
2013-12-14 19:38:14 +01:00
|
|
|
{
|
|
|
|
for (auto line = sel.min().line; line < sel.max().line+1; ++line)
|
|
|
|
{
|
|
|
|
if (indent_empty or buffer[line].length() > 1)
|
|
|
|
res.emplace_back(line, line);
|
|
|
|
}
|
|
|
|
}
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections() = std::move(res);
|
2013-04-12 14:28:13 +02:00
|
|
|
editor.insert(indent, InsertMode::Insert);
|
|
|
|
}
|
|
|
|
|
2013-11-14 01:20:49 +01:00
|
|
|
template<bool deindent_incomplete = true>
|
2013-10-10 22:22:20 +02:00
|
|
|
void deindent(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-10-14 14:47:43 +02:00
|
|
|
CharCount tabstop = context.options()["tabstop"].get<int>();
|
|
|
|
CharCount indent_width = context.options()["indentwidth"].get<int>();
|
|
|
|
if (indent_width == 0)
|
|
|
|
indent_width = tabstop;
|
2013-10-08 20:38:10 +02:00
|
|
|
|
2013-12-14 19:38:14 +01:00
|
|
|
auto& editor = context.editor();
|
|
|
|
auto& buffer = context.buffer();
|
2013-12-15 15:25:23 +01:00
|
|
|
DynamicSelectionList sels{editor.buffer(), context.selections()};
|
|
|
|
auto restore_sels = on_scope_end([&]{ context.selections() = std::move(sels); });
|
2013-10-14 14:47:43 +02:00
|
|
|
|
2013-12-14 19:38:14 +01:00
|
|
|
SelectionList res;
|
2013-12-15 15:25:23 +01:00
|
|
|
for (auto& sel : context.selections())
|
2013-12-14 19:38:14 +01:00
|
|
|
{
|
|
|
|
for (auto line = sel.min().line; line < sel.max().line+1; ++line)
|
|
|
|
{
|
|
|
|
CharCount width = 0;
|
|
|
|
auto& content = buffer[line];
|
|
|
|
for (auto column = 0_byte; column < content.length(); ++column)
|
2013-10-08 20:38:10 +02:00
|
|
|
{
|
2013-12-14 19:38:14 +01:00
|
|
|
const char c = content[column];
|
|
|
|
if (c == '\t')
|
|
|
|
width = (width / tabstop + 1) * tabstop;
|
|
|
|
else if (c == ' ')
|
|
|
|
++width;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (deindent_incomplete and width != 0)
|
|
|
|
res.emplace_back(line, BufferCoord{line, column-1});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (width == indent_width)
|
2013-10-08 20:38:10 +02:00
|
|
|
{
|
2013-12-14 19:38:14 +01:00
|
|
|
res.emplace_back(line, BufferCoord{line, column});
|
|
|
|
break;
|
2013-10-08 20:38:10 +02:00
|
|
|
}
|
|
|
|
}
|
2013-12-14 19:38:14 +01:00
|
|
|
}
|
|
|
|
}
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections() = std::move(res);
|
2013-04-12 14:28:13 +02:00
|
|
|
editor.erase();
|
|
|
|
}
|
|
|
|
|
2013-10-08 20:38:10 +02:00
|
|
|
template<ObjectFlags flags, SelectMode mode = SelectMode::Replace>
|
2013-10-10 22:22:20 +02:00
|
|
|
void select_object(Context& context, int param)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-10-10 22:22:20 +02:00
|
|
|
int level = param <= 0 ? 0 : param - 1;
|
2013-10-08 20:24:56 +02:00
|
|
|
on_next_key_with_autoinfo(context, [level](Key key, Context& context) {
|
|
|
|
if (key.modifiers != Key::Modifiers::None)
|
|
|
|
return;
|
|
|
|
const Codepoint c = key.key;
|
|
|
|
|
|
|
|
static constexpr struct
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-10-08 20:24:56 +02:00
|
|
|
Codepoint key;
|
|
|
|
Selection (*func)(const Buffer&, const Selection&, ObjectFlags);
|
|
|
|
} selectors[] = {
|
|
|
|
{ 'w', select_whole_word<Word> },
|
|
|
|
{ 'W', select_whole_word<WORD> },
|
|
|
|
{ 's', select_whole_sentence },
|
|
|
|
{ 'p', select_whole_paragraph },
|
|
|
|
{ 'i', select_whole_indent },
|
2013-04-12 14:28:13 +02:00
|
|
|
};
|
2013-10-08 20:24:56 +02:00
|
|
|
for (auto& sel : selectors)
|
|
|
|
{
|
|
|
|
if (c == sel.key)
|
2013-12-14 14:21:07 +01:00
|
|
|
return select<mode>(std::bind(sel.func, _1, _2, flags))(context, 0);
|
2013-10-08 20:24:56 +02:00
|
|
|
}
|
2013-04-12 14:28:13 +02:00
|
|
|
|
2013-10-08 20:24:56 +02:00
|
|
|
static constexpr struct
|
|
|
|
{
|
|
|
|
CodepointPair pair;
|
|
|
|
Codepoint name;
|
|
|
|
} surrounding_pairs[] = {
|
|
|
|
{ { '(', ')' }, 'b' },
|
|
|
|
{ { '{', '}' }, 'B' },
|
|
|
|
{ { '[', ']' }, 'r' },
|
|
|
|
{ { '<', '>' }, '\0' },
|
|
|
|
{ { '"', '"' }, '\0' },
|
|
|
|
{ { '\'', '\'' }, '\0' },
|
|
|
|
};
|
|
|
|
for (auto& sur : surrounding_pairs )
|
|
|
|
{
|
|
|
|
if (sur.pair.first == c or sur.pair.second == c or
|
|
|
|
(sur.name != 0 and sur.name == c))
|
2013-12-14 14:21:07 +01:00
|
|
|
return select<mode>(std::bind(select_surrounding, _1, _2,
|
|
|
|
sur.pair, level, flags))(context, 0);
|
2013-10-08 20:24:56 +02:00
|
|
|
}
|
2013-10-10 23:51:16 +02:00
|
|
|
}, "select object",
|
|
|
|
"b,(,): parenthesis block\n"
|
|
|
|
"B,{,}: braces block \n"
|
|
|
|
"r,[,]: brackets block \n"
|
|
|
|
"<,>: angle block \n"
|
|
|
|
"\": double quote string\n"
|
|
|
|
"': single quote string\n"
|
|
|
|
"w: word \n"
|
|
|
|
"W: WORD \n"
|
|
|
|
"s: sentence \n"
|
|
|
|
"p: paragraph \n"
|
|
|
|
"i: indent \n");
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<Key::NamedKey key>
|
2013-10-10 22:22:20 +02:00
|
|
|
void scroll(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
static_assert(key == Key::PageUp or key == Key::PageDown,
|
2013-04-16 14:08:15 +02:00
|
|
|
"scrool only implements PageUp and PageDown");
|
2013-04-12 14:28:13 +02:00
|
|
|
Window& window = context.window();
|
|
|
|
Buffer& buffer = context.buffer();
|
|
|
|
DisplayCoord position = window.position();
|
|
|
|
LineCount cursor_line = 0;
|
|
|
|
|
|
|
|
if (key == Key::PageUp)
|
|
|
|
{
|
|
|
|
position.line -= (window.dimensions().line - 2);
|
|
|
|
cursor_line = position.line;
|
|
|
|
}
|
|
|
|
else if (key == Key::PageDown)
|
|
|
|
{
|
|
|
|
position.line += (window.dimensions().line - 2);
|
|
|
|
cursor_line = position.line + window.dimensions().line - 1;
|
|
|
|
}
|
2013-06-03 19:10:28 +02:00
|
|
|
auto cursor_pos = utf8::advance(buffer.iterator_at(position.line),
|
|
|
|
buffer.iterator_at(position.line+1),
|
2013-04-12 14:28:13 +02:00
|
|
|
position.column);
|
2013-12-14 19:38:14 +01:00
|
|
|
select_coord(cursor_pos.coord(), window.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
window.set_position(position);
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void rotate_selections(Context& context, int count)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections().rotate_main(count != 0 ? count : 1);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void rotate_selections_content(Context& context, int count)
|
2013-10-02 20:10:31 +02:00
|
|
|
{
|
|
|
|
if (count == 0)
|
|
|
|
count = 1;
|
2013-10-08 20:28:57 +02:00
|
|
|
Editor& editor = context.editor();
|
2013-10-02 20:10:31 +02:00
|
|
|
auto strings = editor.selections_content();
|
|
|
|
count = count % strings.size();
|
|
|
|
std::rotate(strings.begin(), strings.end()-count, strings.end());
|
|
|
|
editor.insert(strings, InsertMode::Replace);
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections().rotate_main(count);
|
2013-10-02 20:10:31 +02:00
|
|
|
}
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
enum class SelectFlags
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
Reverse = 1,
|
|
|
|
Inclusive = 2,
|
|
|
|
Extend = 4
|
|
|
|
};
|
|
|
|
constexpr SelectFlags operator|(SelectFlags lhs, SelectFlags rhs)
|
|
|
|
{
|
|
|
|
return (SelectFlags)((int) lhs | (int) rhs);
|
|
|
|
}
|
|
|
|
constexpr bool operator&(SelectFlags lhs, SelectFlags rhs)
|
|
|
|
{
|
|
|
|
return ((int) lhs & (int) rhs) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<SelectFlags flags>
|
2013-10-10 22:22:20 +02:00
|
|
|
void select_to_next_char(Context& context, int param)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-07-27 15:58:06 +02:00
|
|
|
on_next_key_with_autoinfo(context, [param](Key key, Context& context) {
|
2013-12-14 14:21:07 +01:00
|
|
|
select<flags & SelectFlags::Extend ? SelectMode::Extend : SelectMode::Replace>(
|
2013-04-12 14:28:13 +02:00
|
|
|
std::bind(flags & SelectFlags::Reverse ? select_to_reverse : select_to,
|
2013-12-14 14:21:07 +01:00
|
|
|
_1, _2, key.key, param, flags & SelectFlags::Inclusive))(context, 0);
|
2013-11-14 01:12:15 +01:00
|
|
|
}, "select to next char","enter char to select to");
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void start_or_end_macro_recording(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-11-14 19:09:15 +01:00
|
|
|
if (context.input_handler().is_recording())
|
|
|
|
context.input_handler().stop_recording();
|
2013-04-12 14:28:13 +02:00
|
|
|
else
|
2013-07-27 15:58:06 +02:00
|
|
|
on_next_key_with_autoinfo(context, [](Key key, Context& context) {
|
2013-10-10 23:58:41 +02:00
|
|
|
if (key.modifiers == Key::Modifiers::None and
|
|
|
|
key.key >= 'a' and key.key <= 'z')
|
2013-11-14 19:09:15 +01:00
|
|
|
context.input_handler().start_recording(key.key);
|
2013-10-10 23:51:16 +02:00
|
|
|
}, "record macro", "enter macro name ");
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void replay_macro(Context& context, int count)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-07-27 15:58:06 +02:00
|
|
|
on_next_key_with_autoinfo(context, [count](Key key, Context& context) mutable {
|
2013-04-12 14:28:13 +02:00
|
|
|
if (key.modifiers == Key::Modifiers::None)
|
|
|
|
{
|
2013-05-17 14:22:48 +02:00
|
|
|
static std::unordered_set<char> running_macros;
|
|
|
|
if (contains(running_macros, key.key))
|
|
|
|
throw runtime_error("recursive macros call detected");
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
memoryview<String> reg_val = RegisterManager::instance()[key.key].values(context);
|
|
|
|
if (not reg_val.empty())
|
|
|
|
{
|
2013-05-17 14:22:48 +02:00
|
|
|
running_macros.insert(key.key);
|
|
|
|
auto stop = on_scope_end([&]{ running_macros.erase(key.key); });
|
2013-04-12 14:28:13 +02:00
|
|
|
|
|
|
|
auto keys = parse_keys(reg_val[0]);
|
|
|
|
scoped_edition edition(context.editor());
|
|
|
|
do { exec_keys(keys, context); } while (--count > 0);
|
|
|
|
}
|
|
|
|
}
|
2013-10-10 23:51:16 +02:00
|
|
|
}, "replay macro", "enter macro name");
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-07-02 14:55:34 +02:00
|
|
|
template<Direction direction>
|
2013-10-10 22:22:20 +02:00
|
|
|
void jump(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-07-02 14:55:34 +02:00
|
|
|
auto jump = (direction == Forward) ?
|
2013-04-12 14:28:13 +02:00
|
|
|
context.jump_forward() : context.jump_backward();
|
|
|
|
|
2013-05-27 19:23:59 +02:00
|
|
|
Buffer& buffer = const_cast<Buffer&>(jump.buffer());
|
2013-04-12 14:28:13 +02:00
|
|
|
BufferManager::instance().set_last_used_buffer(buffer);
|
|
|
|
if (&buffer != &context.buffer())
|
|
|
|
{
|
|
|
|
auto& manager = ClientManager::instance();
|
|
|
|
context.change_editor(manager.get_unused_window_for_buffer(buffer));
|
|
|
|
}
|
2013-12-15 15:25:23 +01:00
|
|
|
context.selections() = jump;
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void save_selections(Context& context, int)
|
2013-10-02 19:48:50 +02:00
|
|
|
{
|
2013-10-08 20:28:57 +02:00
|
|
|
context.push_jump();
|
2013-12-15 15:25:23 +01:00
|
|
|
context.print_status({ "saved " + to_string(context.selections().size()) +
|
2013-10-02 19:48:50 +02:00
|
|
|
" selections", get_color("Information") });
|
|
|
|
}
|
|
|
|
|
2013-11-06 20:11:46 +01:00
|
|
|
static CharCount get_column(const Buffer& buffer,
|
|
|
|
CharCount tabstop, BufferCoord coord)
|
|
|
|
{
|
|
|
|
auto& line = buffer[coord.line];
|
|
|
|
auto col = 0_char;
|
|
|
|
for (auto it = line.begin();
|
2013-11-10 23:51:52 +01:00
|
|
|
it != line.end() and coord.column > (int)(it - line.begin());
|
2013-11-06 20:11:46 +01:00
|
|
|
it = utf8::next(it))
|
|
|
|
{
|
|
|
|
if (*it == '\t')
|
|
|
|
col = (col / tabstop + 1) * tabstop;
|
|
|
|
else
|
|
|
|
++col;
|
|
|
|
}
|
|
|
|
return col;
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void align(Context& context, int)
|
2013-05-15 18:47:50 +02:00
|
|
|
{
|
2013-12-15 15:25:23 +01:00
|
|
|
auto& selections = context.selections();
|
2013-05-15 18:47:50 +02:00
|
|
|
auto& buffer = context.buffer();
|
2013-11-06 20:11:46 +01:00
|
|
|
const CharCount tabstop = context.options()["tabstop"].get<int>();
|
2013-05-15 18:47:50 +02:00
|
|
|
|
2013-09-18 19:54:04 +02:00
|
|
|
std::vector<std::vector<const Selection*>> columns;
|
|
|
|
LineCount last_line = -1;
|
|
|
|
size_t column = 0;
|
2013-05-15 18:47:50 +02:00
|
|
|
for (auto& sel : selections)
|
2013-09-02 14:30:46 +02:00
|
|
|
{
|
2013-09-18 19:54:04 +02:00
|
|
|
auto line = sel.last().line;
|
|
|
|
if (sel.first().line != line)
|
2013-09-02 14:30:46 +02:00
|
|
|
throw runtime_error("align cannot work with multi line selections");
|
2013-09-18 19:54:04 +02:00
|
|
|
|
|
|
|
column = (line == last_line) ? column + 1 : 0;
|
|
|
|
if (column >= columns.size())
|
|
|
|
columns.resize(column+1);
|
|
|
|
columns[column].push_back(&sel);
|
|
|
|
last_line = line;
|
2013-09-02 14:30:46 +02:00
|
|
|
}
|
2013-05-15 18:47:50 +02:00
|
|
|
|
2013-11-06 20:11:46 +01:00
|
|
|
const bool use_tabs = context.options()["aligntab"].get<bool>();
|
2013-09-18 19:54:04 +02:00
|
|
|
for (auto& col : columns)
|
2013-05-15 18:47:50 +02:00
|
|
|
{
|
2013-11-06 20:11:46 +01:00
|
|
|
CharCount maxcol = 0;
|
2013-09-18 19:54:04 +02:00
|
|
|
for (auto& sel : col)
|
2013-11-06 20:11:46 +01:00
|
|
|
maxcol = std::max(get_column(buffer, tabstop, sel->last()), maxcol);
|
2013-09-18 19:54:04 +02:00
|
|
|
for (auto& sel : col)
|
|
|
|
{
|
2013-11-14 13:10:51 +01:00
|
|
|
auto insert_coord = sel->min();
|
2013-11-06 20:11:46 +01:00
|
|
|
auto lastcol = get_column(buffer, tabstop, sel->last());
|
|
|
|
String padstr;
|
|
|
|
if (not use_tabs)
|
|
|
|
padstr = String{ ' ', maxcol - lastcol };
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto inscol = get_column(buffer, tabstop, insert_coord);
|
|
|
|
auto targetcol = maxcol - (lastcol - inscol);
|
|
|
|
auto tabcol = inscol - (inscol % tabstop);
|
|
|
|
auto tabs = (targetcol - tabcol) / tabstop;
|
|
|
|
auto spaces = targetcol - (tabs ? (tabcol + tabs * tabstop) : inscol);
|
|
|
|
padstr = String{ '\t', tabs } + String{ ' ', spaces };
|
|
|
|
}
|
|
|
|
buffer.insert(buffer.iterator_at(insert_coord), std::move(padstr));
|
2013-09-18 19:54:04 +02:00
|
|
|
}
|
2013-05-15 18:47:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-22 00:20:21 +01:00
|
|
|
void align_indent(Context& context, int selection)
|
|
|
|
{
|
|
|
|
auto& editor = context.editor();
|
|
|
|
auto& buffer = context.buffer();
|
2013-12-15 15:25:23 +01:00
|
|
|
auto& selections = context.selections();
|
2013-11-22 00:20:21 +01:00
|
|
|
std::vector<LineCount> lines;
|
|
|
|
for (auto sel : selections)
|
|
|
|
{
|
|
|
|
for (LineCount l = sel.min().line; l < sel.max().line + 1; ++l)
|
|
|
|
lines.push_back(l);
|
|
|
|
}
|
|
|
|
if (selection > selections.size())
|
|
|
|
throw runtime_error("invalid selection index");
|
|
|
|
if (selection == 0)
|
2013-12-15 15:25:23 +01:00
|
|
|
selection = context.selections().main_index() + 1;
|
2013-11-22 00:20:21 +01:00
|
|
|
|
|
|
|
const String& line = buffer[selections[selection-1].min().line];
|
|
|
|
auto it = line.begin();
|
|
|
|
while (it != line.end() and is_horizontal_blank(*it))
|
|
|
|
++it;
|
|
|
|
const String indent{line.begin(), it};
|
|
|
|
|
|
|
|
scoped_edition edition{editor};
|
|
|
|
for (auto& l : lines)
|
|
|
|
{
|
|
|
|
auto& line = buffer[l];
|
|
|
|
ByteCount i = 0;
|
|
|
|
while (i < line.length() and is_horizontal_blank(line[i]))
|
|
|
|
++i;
|
|
|
|
buffer.erase(buffer.iterator_at(l), buffer.iterator_at({l, i}));
|
|
|
|
buffer.insert(buffer.iterator_at(l), indent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
template<typename T>
|
|
|
|
class Repeated
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
constexpr Repeated(T t) : m_func(t) {}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void operator() (Context& context, int count)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
scoped_edition edition(context.editor());
|
2013-10-10 22:22:20 +02:00
|
|
|
do { m_func(context, 0); } while(--count > 0);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
T m_func;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
constexpr Repeated<T> repeated(T func) { return Repeated<T>(func); }
|
|
|
|
|
2013-07-02 14:55:34 +02:00
|
|
|
template<typename Type, Direction direction, SelectMode mode = SelectMode::Replace>
|
2013-10-10 22:22:20 +02:00
|
|
|
void move(Context& context, int count)
|
2013-07-02 14:55:34 +02:00
|
|
|
{
|
2013-12-15 15:14:52 +01:00
|
|
|
kak_assert(mode == SelectMode::Replace or mode == SelectMode::Extend);
|
2013-10-10 22:22:20 +02:00
|
|
|
Type offset(std::max(count,1));
|
2013-12-15 15:14:52 +01:00
|
|
|
if (direction == Backward)
|
|
|
|
offset = -offset;
|
2013-12-15 15:25:23 +01:00
|
|
|
auto& selections = context.selections();
|
2013-12-15 15:14:52 +01:00
|
|
|
for (auto& sel : selections)
|
|
|
|
{
|
|
|
|
auto last = context.has_window() ? context.window().offset_coord(sel.last(), offset)
|
|
|
|
: context.buffer().offset_coord(sel.last(), offset);
|
|
|
|
|
|
|
|
sel.first() = mode == SelectMode::Extend ? sel.first() : last;
|
|
|
|
sel.last() = last;
|
|
|
|
avoid_eol(context.buffer(), sel);
|
|
|
|
}
|
|
|
|
selections.sort_and_merge_overlapping();
|
2013-07-02 14:55:34 +02:00
|
|
|
}
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
KeyMap keymap =
|
|
|
|
{
|
2013-10-26 19:42:36 +02:00
|
|
|
{ 'h', move<CharCount, Backward> },
|
|
|
|
{ 'j', move<LineCount, Forward> },
|
|
|
|
{ 'k', move<LineCount, Backward> },
|
|
|
|
{ 'l', move<CharCount, Forward> },
|
|
|
|
|
|
|
|
{ 'H', move<CharCount, Backward, SelectMode::Extend> },
|
|
|
|
{ 'J', move<LineCount, Forward, SelectMode::Extend> },
|
|
|
|
{ 'K', move<LineCount, Backward, SelectMode::Extend> },
|
|
|
|
{ 'L', move<CharCount, Forward, SelectMode::Extend> },
|
|
|
|
|
|
|
|
{ 't', select_to_next_char<SelectFlags::None> },
|
|
|
|
{ 'f', select_to_next_char<SelectFlags::Inclusive> },
|
|
|
|
{ 'T', select_to_next_char<SelectFlags::Extend> },
|
|
|
|
{ 'F', select_to_next_char<SelectFlags::Inclusive | SelectFlags::Extend> },
|
|
|
|
{ alt('t'), select_to_next_char<SelectFlags::Reverse> },
|
|
|
|
{ alt('f'), select_to_next_char<SelectFlags::Inclusive | SelectFlags::Reverse> },
|
|
|
|
{ alt('T'), select_to_next_char<SelectFlags::Extend | SelectFlags::Reverse> },
|
|
|
|
{ alt('F'), select_to_next_char<SelectFlags::Inclusive | SelectFlags::Extend | SelectFlags::Reverse> },
|
|
|
|
|
|
|
|
{ 'd', erase_selections },
|
|
|
|
{ 'c', change },
|
|
|
|
{ 'i', insert<InsertMode::Insert> },
|
|
|
|
{ 'I', insert<InsertMode::InsertAtLineBegin> },
|
|
|
|
{ 'a', insert<InsertMode::Append> },
|
|
|
|
{ 'A', insert<InsertMode::AppendAtLineEnd> },
|
|
|
|
{ 'o', insert<InsertMode::OpenLineBelow> },
|
|
|
|
{ 'O', insert<InsertMode::OpenLineAbove> },
|
|
|
|
{ 'r', replace_with_char },
|
|
|
|
|
|
|
|
{ 'g', goto_commands<SelectMode::Replace> },
|
|
|
|
{ 'G', goto_commands<SelectMode::Extend> },
|
|
|
|
|
|
|
|
{ 'v', view_commands },
|
|
|
|
|
|
|
|
{ 'y', yank },
|
|
|
|
{ 'Y', cat_yank },
|
|
|
|
{ 'p', repeated(paste<InsertMode::Append>) },
|
|
|
|
{ 'P', repeated(paste<InsertMode::Insert>) },
|
|
|
|
{ alt('p'), paste<InsertMode::Replace> },
|
|
|
|
|
|
|
|
{ 's', select_regex },
|
|
|
|
{ 'S', split_regex },
|
|
|
|
{ alt('s'), split_lines },
|
|
|
|
|
|
|
|
{ '.', repeat_insert },
|
|
|
|
|
2013-12-15 15:25:23 +01:00
|
|
|
{ '%', [](Context& context, int) { select_whole_buffer(context.buffer(), context.selections()); } },
|
2013-10-26 19:42:36 +02:00
|
|
|
|
|
|
|
{ ':', command },
|
|
|
|
{ '|', pipe },
|
2013-12-15 15:25:23 +01:00
|
|
|
{ ' ', [](Context& context, int count) { if (count == 0) clear_selections(context.buffer(), context.selections());
|
|
|
|
else keep_selection(context.selections(), count-1); } },
|
|
|
|
{ alt(' '), [](Context& context, int count) { if (count == 0) flip_selections(context.selections());
|
|
|
|
else remove_selection(context.selections(), count-1); } },
|
2013-10-26 19:42:36 +02:00
|
|
|
{ 'w', repeated(select<SelectMode::Replace>(select_to_next_word<Word>)) },
|
|
|
|
{ 'e', repeated(select<SelectMode::Replace>(select_to_next_word_end<Word>)) },
|
|
|
|
{ 'b', repeated(select<SelectMode::Replace>(select_to_previous_word<Word>)) },
|
|
|
|
{ 'W', repeated(select<SelectMode::Extend>(select_to_next_word<Word>)) },
|
|
|
|
{ 'E', repeated(select<SelectMode::Extend>(select_to_next_word_end<Word>)) },
|
|
|
|
{ 'B', repeated(select<SelectMode::Extend>(select_to_previous_word<Word>)) },
|
|
|
|
|
|
|
|
{ alt('w'), repeated(select<SelectMode::Replace>(select_to_next_word<WORD>)) },
|
|
|
|
{ alt('e'), repeated(select<SelectMode::Replace>(select_to_next_word_end<WORD>)) },
|
|
|
|
{ alt('b'), repeated(select<SelectMode::Replace>(select_to_previous_word<WORD>)) },
|
|
|
|
{ alt('W'), repeated(select<SelectMode::Extend>(select_to_next_word<WORD>)) },
|
|
|
|
{ alt('E'), repeated(select<SelectMode::Extend>(select_to_next_word_end<WORD>)) },
|
|
|
|
{ alt('B'), repeated(select<SelectMode::Extend>(select_to_previous_word<WORD>)) },
|
|
|
|
|
|
|
|
{ alt('l'), repeated(select<SelectMode::Replace>(select_to_eol)) },
|
|
|
|
{ alt('L'), repeated(select<SelectMode::Extend>(select_to_eol)) },
|
|
|
|
{ alt('h'), repeated(select<SelectMode::Replace>(select_to_eol_reverse)) },
|
|
|
|
{ alt('H'), repeated(select<SelectMode::Extend>(select_to_eol_reverse)) },
|
|
|
|
|
|
|
|
{ 'x', repeated(select<SelectMode::Replace>(select_line)) },
|
|
|
|
{ 'X', repeated(select<SelectMode::Extend>(select_line)) },
|
|
|
|
{ alt('x'), select<SelectMode::Replace>(select_whole_lines) },
|
|
|
|
{ alt('X'), select<SelectMode::Replace>(trim_partial_lines) },
|
|
|
|
|
|
|
|
{ 'm', select<SelectMode::Replace>(select_matching) },
|
|
|
|
{ 'M', select<SelectMode::Extend>(select_matching) },
|
|
|
|
|
|
|
|
{ '/', search<SelectMode::Replace, Forward> },
|
|
|
|
{ '?', search<SelectMode::Extend, Forward> },
|
|
|
|
{ alt('/'), search<SelectMode::Replace, Backward> },
|
|
|
|
{ alt('?'), search<SelectMode::Extend, Backward> },
|
|
|
|
{ 'n', search_next<SelectMode::Replace, Forward> },
|
|
|
|
{ alt('n'), search_next<SelectMode::ReplaceMain, Forward> },
|
|
|
|
{ 'N', search_next<SelectMode::Append, Forward> },
|
|
|
|
{ '*', use_selection_as_search_pattern<true> },
|
|
|
|
{ alt('*'), use_selection_as_search_pattern<false> },
|
|
|
|
|
|
|
|
{ 'u', repeated([](Context& context, int) { if (not context.editor().undo()) context.print_status({ "nothing left to undo", get_color("Information") }); }) },
|
|
|
|
{ 'U', repeated([](Context& context, int) { if (not context.editor().redo()) context.print_status({ "nothing left to redo", get_color("Information") }); }) },
|
|
|
|
|
|
|
|
{ alt('i'), select_object<ObjectFlags::ToBegin | ObjectFlags::ToEnd | ObjectFlags::Inner> },
|
|
|
|
{ alt('a'), select_object<ObjectFlags::ToBegin | ObjectFlags::ToEnd> },
|
|
|
|
{ ']', select_object<ObjectFlags::ToEnd> },
|
|
|
|
{ '[', select_object<ObjectFlags::ToBegin> },
|
|
|
|
{ '}', select_object<ObjectFlags::ToEnd, SelectMode::Extend> },
|
|
|
|
{ '{', select_object<ObjectFlags::ToBegin, SelectMode::Extend> },
|
|
|
|
|
|
|
|
{ alt('j'), join },
|
|
|
|
{ alt('J'), join_select_spaces },
|
|
|
|
|
|
|
|
{ alt('k'), keep<true> },
|
|
|
|
{ alt('K'), keep<false> },
|
|
|
|
|
|
|
|
{ '<', deindent },
|
|
|
|
{ '>', indent },
|
2013-10-30 09:45:47 +01:00
|
|
|
{ alt('>'), indent<true> },
|
2013-11-14 01:20:49 +01:00
|
|
|
{ alt('<'), deindent<false> },
|
2013-10-26 19:42:36 +02:00
|
|
|
|
|
|
|
{ ctrl('i'), jump<Forward> },
|
|
|
|
{ ctrl('o'), jump<Backward> },
|
|
|
|
{ ctrl('s'), save_selections },
|
|
|
|
|
|
|
|
{ alt('r'), rotate_selections },
|
|
|
|
{ alt('R'), rotate_selections_content },
|
|
|
|
|
2013-11-14 14:59:32 +01:00
|
|
|
{ 'q', replay_macro },
|
|
|
|
{ 'Q', start_or_end_macro_recording },
|
2013-10-26 19:42:36 +02:00
|
|
|
|
|
|
|
{ '`', for_each_char<to_lower> },
|
|
|
|
{ '~', for_each_char<to_upper> },
|
|
|
|
{ alt('`'), for_each_char<swap_case> },
|
|
|
|
|
2013-11-14 13:10:51 +01:00
|
|
|
{ '&', align },
|
2013-11-22 00:20:21 +01:00
|
|
|
{ alt('&'), align_indent },
|
2013-07-02 14:55:34 +02:00
|
|
|
|
|
|
|
{ Key::Left, move<CharCount, Backward> },
|
|
|
|
{ Key::Down, move<LineCount, Forward> },
|
|
|
|
{ Key::Up, move<LineCount, Backward> },
|
|
|
|
{ Key::Right, move<CharCount, Forward> },
|
|
|
|
|
|
|
|
{ Key::PageUp, scroll<Key::PageUp> },
|
|
|
|
{ Key::PageDown, scroll<Key::PageDown> },
|
2013-04-12 14:28:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|