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"
|
2014-03-27 00:42:10 +01:00
|
|
|
#include "debug.hh"
|
2013-04-12 14:28:13 +02:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
void erase(Buffer& buffer, SelectionList& selections)
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
|
|
|
{
|
|
|
|
erase(buffer, sel);
|
|
|
|
avoid_eol(buffer, sel);
|
|
|
|
}
|
|
|
|
selections.check_invariant();
|
|
|
|
buffer.check_invariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<InsertMode mode>
|
|
|
|
BufferIterator prepare_insert(Buffer& buffer, const Selection& sel)
|
|
|
|
{
|
|
|
|
switch (mode)
|
|
|
|
{
|
|
|
|
case InsertMode::Insert:
|
|
|
|
return buffer.iterator_at(sel.min());
|
|
|
|
case InsertMode::Replace:
|
|
|
|
return Kakoune::erase(buffer, sel);
|
|
|
|
case InsertMode::Append:
|
|
|
|
{
|
|
|
|
// special case for end of lines, append to current line instead
|
|
|
|
auto pos = buffer.iterator_at(sel.max());
|
|
|
|
return *pos == '\n' ? pos : utf8::next(pos);
|
|
|
|
}
|
|
|
|
case InsertMode::InsertAtLineBegin:
|
|
|
|
return buffer.iterator_at(sel.min().line);
|
|
|
|
case InsertMode::AppendAtLineEnd:
|
|
|
|
return buffer.iterator_at({sel.max().line, buffer[sel.max().line].length() - 1});
|
|
|
|
case InsertMode::InsertAtNextLineBegin:
|
|
|
|
return buffer.iterator_at(sel.max().line+1);
|
|
|
|
case InsertMode::OpenLineBelow:
|
|
|
|
return buffer.insert(buffer.iterator_at(sel.max().line + 1), "\n");
|
|
|
|
case InsertMode::OpenLineAbove:
|
|
|
|
return buffer.insert(buffer.iterator_at(sel.min().line), "\n");
|
|
|
|
}
|
|
|
|
kak_assert(false);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
template<InsertMode mode>
|
|
|
|
void insert(Buffer& buffer, SelectionList& selections, const String& str)
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
|
|
|
{
|
|
|
|
auto pos = prepare_insert<mode>(buffer, sel);
|
|
|
|
pos = buffer.insert(pos, str);
|
|
|
|
if (mode == InsertMode::Replace and pos != buffer.end())
|
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
sel.anchor() = pos.coord();
|
|
|
|
sel.cursor() = str.empty() ?
|
|
|
|
pos.coord() : (pos + str.byte_count_to(str.char_length() - 1)).coord();
|
2013-12-15 19:07:51 +01:00
|
|
|
}
|
|
|
|
avoid_eol(buffer, sel);
|
|
|
|
}
|
|
|
|
selections.check_invariant();
|
|
|
|
buffer.check_invariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<InsertMode mode>
|
|
|
|
void insert(Buffer& buffer, SelectionList& selections, memoryview<String> strings)
|
|
|
|
{
|
|
|
|
if (strings.empty())
|
|
|
|
return;
|
|
|
|
for (size_t i = 0; i < selections.size(); ++i)
|
|
|
|
{
|
|
|
|
auto& sel = selections[i];
|
|
|
|
auto pos = prepare_insert<mode>(buffer, sel);
|
|
|
|
const String& str = strings[std::min(i, strings.size()-1)];
|
|
|
|
pos = buffer.insert(pos, str);
|
|
|
|
if (mode == InsertMode::Replace and pos != buffer.end())
|
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
sel.anchor() = pos.coord();
|
|
|
|
sel.cursor() = (str.empty() ?
|
|
|
|
pos : pos + str.byte_count_to(str.char_length() - 1)).coord();
|
2013-12-15 19:07:51 +01:00
|
|
|
}
|
|
|
|
avoid_eol(buffer, sel);
|
|
|
|
}
|
|
|
|
selections.check_invariant();
|
|
|
|
buffer.check_invariant();
|
|
|
|
}
|
|
|
|
|
2013-04-12 14:28:13 +02:00
|
|
|
using namespace std::placeholders;
|
|
|
|
|
2013-12-15 15:38:04 +01:00
|
|
|
enum class SelectMode
|
|
|
|
{
|
|
|
|
Replace,
|
|
|
|
Extend,
|
|
|
|
Append,
|
|
|
|
ReplaceMain,
|
|
|
|
};
|
|
|
|
|
2014-01-01 19:45:28 +01:00
|
|
|
template<SelectMode mode = SelectMode::Replace, typename Func>
|
|
|
|
void select(Context& context, Func func)
|
2013-12-14 14:21:07 +01:00
|
|
|
{
|
2014-01-01 19:45:28 +01:00
|
|
|
auto& buffer = context.buffer();
|
|
|
|
auto& selections = context.selections();
|
|
|
|
if (mode == SelectMode::Append)
|
2013-12-14 14:21:07 +01:00
|
|
|
{
|
2014-01-01 19:45:28 +01:00
|
|
|
auto& sel = selections.main();
|
|
|
|
auto res = 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 = func(buffer, sel);
|
2014-01-28 20:05:49 +01:00
|
|
|
sel.anchor() = res.anchor();
|
|
|
|
sel.cursor() = res.cursor();
|
2014-01-01 19:45:28 +01:00
|
|
|
if (not res.captures().empty())
|
|
|
|
sel.captures() = std::move(res.captures());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
2013-12-14 19:38:14 +01:00
|
|
|
{
|
2014-01-01 19:45:28 +01:00
|
|
|
auto res = func(buffer, sel);
|
|
|
|
if (mode == SelectMode::Extend)
|
|
|
|
sel.merge_with(res);
|
|
|
|
else
|
2013-12-14 14:21:07 +01:00
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
sel.anchor() = res.anchor();
|
|
|
|
sel.cursor() = res.cursor();
|
2013-12-14 14:21:07 +01:00
|
|
|
}
|
2014-01-01 19:45:28 +01:00
|
|
|
if (not res.captures().empty())
|
|
|
|
sel.captures() = std::move(res.captures());
|
2013-12-14 19:38:14 +01:00
|
|
|
}
|
2013-12-14 14:21:07 +01:00
|
|
|
}
|
2014-01-01 19:45:28 +01:00
|
|
|
selections.sort_and_merge_overlapping();
|
|
|
|
selections.check_invariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<SelectMode mode, typename T>
|
|
|
|
class Select
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
constexpr Select(T t) : m_func(t) {}
|
|
|
|
void operator() (Context& context, int) { select<mode>(context, m_func); }
|
2013-12-14 14:21:07 +01:00
|
|
|
private:
|
|
|
|
T m_func;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<SelectMode mode = SelectMode::Replace, typename T>
|
2014-01-01 19:45:28 +01:00
|
|
|
constexpr Select<mode, T> make_select(T func)
|
|
|
|
{
|
|
|
|
return Select<mode, T>(func);
|
|
|
|
}
|
2013-12-14 14:21:07 +01:00
|
|
|
|
2013-12-14 19:38:14 +01:00
|
|
|
template<SelectMode mode = SelectMode::Replace>
|
2013-12-16 14:39:02 +01:00
|
|
|
void select_coord(const Buffer& buffer, BufferCoord coord, SelectionList& selections)
|
2013-12-14 19:38:14 +01:00
|
|
|
{
|
2013-12-16 14:39:02 +01:00
|
|
|
coord = buffer.clamp(coord);
|
2013-12-14 19:38:14 +01:00
|
|
|
if (mode == SelectMode::Replace)
|
|
|
|
selections = SelectionList { coord };
|
|
|
|
else if (mode == SelectMode::Extend)
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
2014-01-28 20:05:49 +01:00
|
|
|
sel.cursor() = coord;
|
2013-12-14 19:38:14 +01:00
|
|
|
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-12-15 19:07:51 +01:00
|
|
|
void enter_insert_mode(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-12-15 19:07:51 +01:00
|
|
|
void repeat_last_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-16 14:39:02 +01:00
|
|
|
select_coord<mode>(context.buffer(), LineCount{line - 1}, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
if (context.has_window())
|
2013-12-16 15:01:40 +01:00
|
|
|
context.window().center_line(LineCount{line-1});
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
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;
|
2013-12-16 14:39:02 +01:00
|
|
|
auto& buffer = context.buffer();
|
2013-04-12 14:28:13 +02:00
|
|
|
switch (tolower(key.key))
|
|
|
|
{
|
|
|
|
case 'g':
|
|
|
|
case 'k':
|
|
|
|
context.push_jump();
|
2013-12-16 14:39:02 +01:00
|
|
|
select_coord<mode>(buffer, BufferCoord{0,0}, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'l':
|
2014-01-01 19:45:28 +01:00
|
|
|
select<mode>(context, select_to_eol);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'h':
|
2014-01-01 19:45:28 +01:00
|
|
|
select<mode>(context, select_to_eol_reverse);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'j':
|
|
|
|
{
|
|
|
|
context.push_jump();
|
2013-12-16 14:39:02 +01:00
|
|
|
select_coord<mode>(buffer, buffer.line_count() - 1, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'e':
|
|
|
|
context.push_jump();
|
2013-12-16 14:39:02 +01:00
|
|
|
select_coord<mode>(buffer, 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-16 14:39:02 +01:00
|
|
|
select_coord<mode>(buffer, 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-16 14:39:02 +01:00
|
|
|
select_coord<mode>(buffer, 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-16 14:39:02 +01:00
|
|
|
select_coord<mode>(buffer, line, context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
{
|
|
|
|
auto& buffer_manager = BufferManager::instance();
|
|
|
|
auto it = buffer_manager.begin();
|
2013-12-16 14:39:02 +01:00
|
|
|
if (it->get() == &buffer and ++it == buffer_manager.end())
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
context.push_jump();
|
2013-12-20 21:10:08 +01:00
|
|
|
context.change_buffer(**it);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'f':
|
|
|
|
{
|
2014-03-29 09:55:45 +01:00
|
|
|
const Selection& sel = context.selections().main();
|
2013-06-03 18:58:09 +02:00
|
|
|
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;
|
|
|
|
|
2014-01-28 20:05:49 +01:00
|
|
|
LineCount cursor_line = context.selections().main().cursor().line;
|
2013-04-12 14:28:13 +02:00
|
|
|
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':
|
2013-12-16 15:01:40 +01:00
|
|
|
context.window().center_line(cursor_line);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 't':
|
2013-12-16 15:01:40 +01:00
|
|
|
context.window().display_line_at(cursor_line, 0);
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
case 'b':
|
2013-12-16 15:01:40 +01:00
|
|
|
context.window().display_line_at(cursor_line, window.dimensions().line-1);
|
2013-04-12 14:28:13 +02:00
|
|
|
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) {
|
2014-01-05 16:14:58 +01:00
|
|
|
if (not iswprint(key.key))
|
2013-07-02 15:03:20 +02:00
|
|
|
return;
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
|
|
|
Buffer& buffer = context.buffer();
|
2013-12-15 21:52:57 +01:00
|
|
|
SelectionList& selections = context.selections();
|
|
|
|
std::vector<String> strings;
|
|
|
|
for (auto& sel : selections)
|
|
|
|
{
|
|
|
|
CharCount count = char_length(buffer, sel);
|
|
|
|
strings.emplace_back(key.key, count);
|
|
|
|
}
|
|
|
|
insert<InsertMode::Replace>(buffer, selections, strings);
|
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
|
|
|
{
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
2013-12-15 21:37:07 +01:00
|
|
|
std::vector<String> sels = context.selections_content();
|
2013-04-12 14:28:13 +02:00
|
|
|
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
|
|
|
}
|
2013-12-15 19:07:51 +01:00
|
|
|
insert<InsertMode::Replace>(context.buffer(), context.selections(), sels);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
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) {
|
2014-02-11 23:16:17 +01:00
|
|
|
if (context.has_ui())
|
|
|
|
{
|
|
|
|
context.ui().info_hide();
|
2014-02-11 23:54:08 +01:00
|
|
|
if (event == PromptEvent::Change and context.options()["autoinfo"].get<bool>())
|
2014-02-11 23:16:17 +01:00
|
|
|
{
|
|
|
|
auto info = CommandManager::instance().command_info(cmdline);
|
|
|
|
ColorPair col = get_color("Information");
|
|
|
|
DisplayCoord pos = context.window().dimensions();
|
|
|
|
pos.column -= 1;
|
|
|
|
if (not info.first.empty() and not info.second.empty())
|
|
|
|
context.ui().info_show(info.first, info.second, pos , col, MenuStyle::Prompt);
|
|
|
|
}
|
|
|
|
}
|
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-12-24 17:48:52 +01:00
|
|
|
template<InsertMode mode>
|
2013-10-10 22:22:20 +02:00
|
|
|
void pipe(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-12-24 17:48:52 +01:00
|
|
|
const char* prompt = mode == InsertMode::Replace ? "pipe:" : "pipe (ins):";
|
2013-12-30 15:20:05 +01:00
|
|
|
context.input_handler().prompt(prompt, get_color("Prompt"), shell_complete,
|
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-12-15 19:07:51 +01:00
|
|
|
Buffer& buffer = context.buffer();
|
|
|
|
SelectionList& selections = context.selections();
|
2013-04-12 14:28:13 +02:00
|
|
|
std::vector<String> strings;
|
2013-12-15 19:07:51 +01:00
|
|
|
for (auto& sel : selections)
|
2013-07-24 14:38:26 +02:00
|
|
|
{
|
2013-12-15 19:07:51 +01:00
|
|
|
auto str = content(buffer, sel);
|
2013-07-24 14:38:26 +02:00
|
|
|
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-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
2013-12-24 17:48:52 +01:00
|
|
|
insert<mode>(buffer, selections, strings);
|
2013-04-12 14:28:13 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-12-15 15:38:04 +01:00
|
|
|
template<Direction direction, SelectMode mode>
|
|
|
|
void select_next_match(const Buffer& buffer, SelectionList& selections,
|
|
|
|
const Regex& regex)
|
|
|
|
{
|
|
|
|
if (mode == SelectMode::Replace)
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
|
|
|
sel = find_next_match<direction>(buffer, sel, regex);
|
|
|
|
}
|
|
|
|
if (mode == SelectMode::Extend)
|
|
|
|
{
|
|
|
|
for (auto& sel : selections)
|
|
|
|
sel.merge_with(find_next_match<direction>(buffer, sel, regex));
|
|
|
|
}
|
|
|
|
else if (mode == SelectMode::ReplaceMain)
|
|
|
|
selections.main() = find_next_match<direction>(buffer, selections.main(), regex);
|
|
|
|
else if (mode == SelectMode::Append)
|
|
|
|
{
|
|
|
|
selections.push_back(find_next_match<direction>(buffer, selections.main(), regex));
|
|
|
|
selections.set_main_index(selections.size() - 1);
|
|
|
|
}
|
|
|
|
selections.sort_and_merge_overlapping();
|
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void yank(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-12-15 21:37:07 +01:00
|
|
|
RegisterManager::instance()['"'] = context.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
|
|
|
{
|
2013-12-15 21:37:07 +01:00
|
|
|
auto sels = context.selections_content();
|
2013-04-12 14:28:13 +02:00
|
|
|
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
|
|
|
{
|
2013-12-15 21:37:07 +01:00
|
|
|
RegisterManager::instance()['"'] = context.selections_content();
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
|
|
|
erase(context.buffer(), context.selections());
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-12-26 11:40:22 +01:00
|
|
|
void cat_erase_selections(Context& context, int)
|
|
|
|
{
|
|
|
|
auto sels = context.selections_content();
|
|
|
|
String str;
|
|
|
|
for (auto& sel : sels)
|
|
|
|
str += sel;
|
|
|
|
RegisterManager::instance()['"'] = memoryview<String>(str);
|
|
|
|
erase(context.buffer(), context.selections());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void change(Context& context, int param)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-12-15 21:37:07 +01:00
|
|
|
RegisterManager::instance()['"'] = context.selections_content();
|
2013-12-15 19:07:51 +01:00
|
|
|
enter_insert_mode<InsertMode::Replace>(context, param);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
constexpr InsertMode adapt_for_linewise(InsertMode mode)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2013-12-15 19:07:51 +01:00
|
|
|
return ((mode == InsertMode::Append) ?
|
|
|
|
InsertMode::InsertAtNextLineBegin :
|
|
|
|
((mode == InsertMode::Insert) ?
|
|
|
|
InsertMode::InsertAtLineBegin :
|
|
|
|
((mode == InsertMode::Replace) ?
|
|
|
|
InsertMode::Replace : InsertMode::Insert)));
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
template<InsertMode mode>
|
2013-10-10 22:22:20 +02:00
|
|
|
void paste(Context& context, int)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
|
|
|
auto strings = RegisterManager::instance()['"'].values(context);
|
2013-12-15 19:07:51 +01:00
|
|
|
bool linewise = false;
|
2013-04-12 14:28:13 +02:00
|
|
|
for (auto& str : strings)
|
|
|
|
{
|
|
|
|
if (not str.empty() and str.back() == '\n')
|
|
|
|
{
|
2013-12-15 19:07:51 +01:00
|
|
|
linewise = true;
|
2013-04-12 14:28:13 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-01-30 21:46:15 +01:00
|
|
|
ScopedEdition edition(context);
|
2013-12-15 19:07:51 +01:00
|
|
|
if (linewise)
|
|
|
|
insert<adapt_for_linewise(mode)>(context.buffer(), context.selections(), strings);
|
|
|
|
else
|
|
|
|
insert<mode>(context.buffer(), context.selections(), strings);
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2014-01-26 19:53:34 +01:00
|
|
|
void regex_prompt(Context& context, const String prompt, T func)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2014-01-26 19:53:34 +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
|
|
|
[=](const String& str, PromptEvent event, Context& context) {
|
2014-01-26 19:53:34 +01:00
|
|
|
try
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2014-01-26 19:53:34 +01:00
|
|
|
context.selections() = selections;
|
|
|
|
context.input_handler().set_prompt_colors(get_color("Prompt"));
|
|
|
|
if (event == PromptEvent::Abort)
|
|
|
|
return;
|
|
|
|
if (event == PromptEvent::Change and
|
|
|
|
(str.empty() or not context.options()["incsearch"].get<bool>()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (event == PromptEvent::Validate)
|
|
|
|
context.push_jump();
|
|
|
|
func(str.empty() ? Regex{} : Regex{str}, context);
|
|
|
|
}
|
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
if (event == PromptEvent::Validate)
|
2013-04-12 14:28:13 +02:00
|
|
|
throw runtime_error("regex error: "_str + err.what());
|
2014-01-26 19:53:34 +01:00
|
|
|
else
|
|
|
|
context.input_handler().set_prompt_colors(get_color("Error"));
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
2014-01-26 19:53:34 +01:00
|
|
|
catch (runtime_error&)
|
2013-04-12 14:28:13 +02:00
|
|
|
{
|
2014-01-26 19:53:34 +01:00
|
|
|
context.selections() = selections;
|
|
|
|
// only validation should propagate errors,
|
|
|
|
// incremental search should not.
|
|
|
|
if (event == PromptEvent::Validate)
|
|
|
|
throw;
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-01-26 19:53:34 +01:00
|
|
|
template<SelectMode mode, Direction direction>
|
|
|
|
void search(Context& context, int)
|
|
|
|
{
|
|
|
|
regex_prompt(context, direction == Forward ? "search:" : "reverse search:",
|
|
|
|
[](Regex ex, Context& context) {
|
|
|
|
if (ex.empty())
|
|
|
|
ex = Regex{RegisterManager::instance()['/'].values(context)[0]};
|
|
|
|
else
|
|
|
|
RegisterManager::instance()['/'] = String{ex.str()};
|
|
|
|
if (not ex.empty() and not ex.str().empty())
|
|
|
|
select_next_match<direction, mode>(context.buffer(), context.selections(), ex);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
template<SelectMode mode, Direction direction>
|
|
|
|
void search_next(Context& context, int param)
|
|
|
|
{
|
|
|
|
const String& str = RegisterManager::instance()['/'].values(context)[0];
|
|
|
|
if (not str.empty())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Regex ex{str};
|
|
|
|
do {
|
|
|
|
select_next_match<direction, mode>(context.buffer(), context.selections(), ex);
|
|
|
|
} while (--param > 0);
|
|
|
|
}
|
|
|
|
catch (boost::regex_error& err)
|
|
|
|
{
|
|
|
|
throw runtime_error("regex error: "_str + err.what());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw runtime_error("no search pattern");
|
|
|
|
}
|
|
|
|
|
|
|
|
template<bool smart>
|
|
|
|
void use_selection_as_search_pattern(Context& context, int)
|
|
|
|
{
|
|
|
|
std::vector<String> patterns;
|
|
|
|
auto& sels = context.selections();
|
|
|
|
const auto& buffer = context.buffer();
|
|
|
|
for (auto& sel : sels)
|
|
|
|
{
|
|
|
|
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";
|
|
|
|
if (smart)
|
|
|
|
{
|
|
|
|
if (begin == buffer.begin() or (is_word(*begin) and not is_word(*(begin-1))))
|
|
|
|
content = "\\b" + content;
|
|
|
|
if (end == buffer.end() or (is_word(*(end-1)) and not is_word(*end)))
|
|
|
|
content = content + "\\b";
|
|
|
|
}
|
|
|
|
patterns.push_back(std::move(content));
|
|
|
|
}
|
|
|
|
RegisterManager::instance()['/'] = patterns;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
if (sel.anchor().line == sel.cursor().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 19:38:14 +01:00
|
|
|
auto& buffer = context.buffer();
|
2014-01-03 21:41:47 +01:00
|
|
|
SelectionList selections;
|
|
|
|
for (auto& sel : context.selections())
|
|
|
|
{
|
|
|
|
for (LineCount line = sel.min().line; line <= sel.max().line; ++line)
|
|
|
|
{
|
|
|
|
if (line == buffer.line_count() - 1)
|
|
|
|
continue;
|
|
|
|
auto begin = buffer.iterator_at({line, buffer[line].length()-1});
|
|
|
|
auto end = begin+1;
|
|
|
|
skip_while(end, buffer.end(), is_horizontal_blank);
|
|
|
|
selections.push_back({begin.coord(), (end-1).coord()});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (selections.empty())
|
|
|
|
return;
|
|
|
|
selections.sort_and_merge_overlapping();
|
|
|
|
context.selections() = selections;
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
2014-01-03 21:41:47 +01:00
|
|
|
insert<InsertMode::Replace>(buffer, context.selections(), " ");
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:22:20 +02:00
|
|
|
void join(Context& context, int param)
|
2013-04-23 18:54:31 +02:00
|
|
|
{
|
2013-12-15 15:33:09 +01:00
|
|
|
DynamicSelectionList sels{context.buffer(), context.selections()};
|
2013-12-15 15:25:23 +01:00
|
|
|
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& buffer = context.buffer();
|
2013-12-15 19:07:51 +01:00
|
|
|
SelectionList sels;
|
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)
|
2013-12-15 19:07:51 +01:00
|
|
|
sels.emplace_back(line, line);
|
2013-12-14 19:38:14 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-29 10:02:09 +01:00
|
|
|
if (not sels.empty())
|
|
|
|
{
|
|
|
|
ScopedEdition edition(context);
|
|
|
|
insert<InsertMode::Insert>(buffer, sels, indent);
|
|
|
|
}
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
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& buffer = context.buffer();
|
2013-12-15 19:07:51 +01:00
|
|
|
SelectionList sels;
|
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)
|
2013-12-15 19:07:51 +01:00
|
|
|
sels.emplace_back(line, BufferCoord{line, column-1});
|
2013-12-14 19:38:14 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (width == indent_width)
|
2013-10-08 20:38:10 +02:00
|
|
|
{
|
2013-12-15 19:07:51 +01:00
|
|
|
sels.emplace_back(line, BufferCoord{line, column});
|
2013-12-14 19:38:14 +01:00
|
|
|
break;
|
2013-10-08 20:38:10 +02:00
|
|
|
}
|
|
|
|
}
|
2013-12-14 19:38:14 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-29 10:02:09 +01:00
|
|
|
if (not sels.empty())
|
|
|
|
{
|
|
|
|
ScopedEdition edition(context);
|
|
|
|
erase(context.buffer(), sels);
|
|
|
|
}
|
2013-04-12 14:28:13 +02:00
|
|
|
}
|
|
|
|
|
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)
|
2014-01-01 19:45:28 +01:00
|
|
|
return select<mode>(context, std::bind(sel.func, _1, _2, flags));
|
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' },
|
2014-01-23 20:45:09 +01:00
|
|
|
{ { '<', '>' }, 'a' },
|
2014-01-01 14:59:25 +01:00
|
|
|
{ { '"', '"' }, 'Q' },
|
|
|
|
{ { '\'', '\'' }, 'q' },
|
2014-02-15 01:35:01 +01:00
|
|
|
{ { '`', '`' }, 'g' },
|
2013-10-08 20:24:56 +02:00
|
|
|
};
|
2014-01-01 19:45:28 +01:00
|
|
|
for (auto& sur : surrounding_pairs)
|
2013-10-08 20:24:56 +02:00
|
|
|
{
|
|
|
|
if (sur.pair.first == c or sur.pair.second == c or
|
|
|
|
(sur.name != 0 and sur.name == c))
|
2014-01-01 19:45:28 +01:00
|
|
|
return select<mode>(context, std::bind(select_surrounding, _1, _2,
|
|
|
|
sur.pair, level, flags));
|
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"
|
2014-01-27 22:11:45 +01:00
|
|
|
"a,<,>: angle block \n"
|
2014-01-01 14:59:25 +01:00
|
|
|
"\",Q: double quote string\n"
|
|
|
|
"',q: single quote string\n"
|
2014-02-15 01:35:01 +01:00
|
|
|
"`,g: grave quote string \n"
|
2013-10-10 23:51:16 +02:00
|
|
|
"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-20 21:10:08 +01:00
|
|
|
select_coord(buffer, cursor_pos.coord(), context.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
|
|
|
}
|
|
|
|
|
2014-03-27 00:42:10 +01:00
|
|
|
void rotate_selections_content(Context& context, int group)
|
2013-10-02 20:10:31 +02:00
|
|
|
{
|
2014-03-27 00:42:10 +01:00
|
|
|
int count = 1;
|
2013-12-15 21:37:07 +01:00
|
|
|
auto strings = context.selections_content();
|
2014-03-27 00:42:10 +01:00
|
|
|
if (group == 0 or group > (int)strings.size())
|
|
|
|
group = (int)strings.size();
|
|
|
|
count = count % group;
|
|
|
|
for (auto it = strings.begin(); it != strings.end(); )
|
|
|
|
{
|
|
|
|
auto end = std::min(strings.end(), it + group);
|
|
|
|
std::rotate(it, end-count, end);
|
|
|
|
it = end;
|
|
|
|
}
|
2013-12-15 19:07:51 +01:00
|
|
|
insert<InsertMode::Replace>(context.buffer(), context.selections(), strings);
|
2014-03-27 00:42:10 +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>(
|
2014-01-01 19:45:28 +01:00
|
|
|
context,
|
2013-04-12 14:28:13 +02:00
|
|
|
std::bind(flags & SelectFlags::Reverse ? select_to_reverse : select_to,
|
2014-01-01 19:45:28 +01:00
|
|
|
_1, _2, key.key, param, flags & SelectFlags::Inclusive));
|
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]);
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
2013-04-12 14:28:13 +02:00
|
|
|
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())
|
2013-12-20 21:10:08 +01:00
|
|
|
context.change_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
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
auto line = sel.cursor().line;
|
|
|
|
if (sel.anchor().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)
|
2014-01-28 20:05:49 +01:00
|
|
|
maxcol = std::max(get_column(buffer, tabstop, sel->cursor()), 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();
|
2014-01-28 20:05:49 +01:00
|
|
|
auto lastcol = get_column(buffer, tabstop, sel->cursor());
|
2013-11-06 20:11:46 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-27 23:19:37 +01:00
|
|
|
void copy_indent(Context& context, int selection)
|
2013-11-22 00:20:21 +01:00
|
|
|
{
|
|
|
|
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)
|
2014-02-27 23:19:37 +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};
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition{context};
|
2013-11-22 00:20:21 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-02 02:04:26 +01:00
|
|
|
void tabs_to_spaces(Context& context, int ts)
|
|
|
|
{
|
|
|
|
auto& buffer = context.buffer();
|
|
|
|
const CharCount opt_tabstop = context.options()["tabstop"].get<int>();
|
|
|
|
const CharCount tabstop = ts == 0 ? opt_tabstop : ts;
|
|
|
|
for (auto& sel : context.selections())
|
|
|
|
{
|
|
|
|
for (auto it = buffer.iterator_at(sel.min()),
|
|
|
|
end = buffer.iterator_at(sel.max())+1; it != end; ++it)
|
|
|
|
{
|
|
|
|
if (*it == '\t')
|
|
|
|
{
|
|
|
|
CharCount col = get_column(buffer, opt_tabstop, it.coord());
|
|
|
|
CharCount end_col = (col / tabstop + 1) * tabstop;
|
|
|
|
it = buffer.erase(it, it+1);
|
|
|
|
it = buffer.insert(it, String{ ' ', end_col - col }) + (int)(end_col - col);
|
|
|
|
end = buffer.iterator_at(sel.max())+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void spaces_to_tabs(Context& context, int ts)
|
|
|
|
{
|
|
|
|
auto& buffer = context.buffer();
|
|
|
|
const CharCount opt_tabstop = context.options()["tabstop"].get<int>();
|
|
|
|
const CharCount tabstop = ts == 0 ? opt_tabstop : ts;
|
|
|
|
for (auto& sel : context.selections())
|
|
|
|
{
|
|
|
|
for (auto it = buffer.iterator_at(sel.min()),
|
|
|
|
end = buffer.iterator_at(sel.max())+1; it != end;)
|
|
|
|
{
|
|
|
|
if (*it == ' ')
|
|
|
|
{
|
|
|
|
auto spaces_beg = it;
|
|
|
|
auto spaces_end = spaces_beg+1;
|
|
|
|
CharCount col = get_column(buffer, opt_tabstop, spaces_end.coord());
|
|
|
|
while (*spaces_end == ' ' and (col % tabstop) != 0)
|
|
|
|
{
|
|
|
|
++spaces_end;
|
|
|
|
++col;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((col % tabstop) == 0)
|
|
|
|
{
|
|
|
|
it = buffer.erase(spaces_beg, spaces_end);
|
|
|
|
it = buffer.insert(it, "\t") + 1;
|
|
|
|
end = buffer.iterator_at(sel.max())+1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
it = spaces_end;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-15 20:51:09 +01:00
|
|
|
class ModifiedRangesListener : public BufferChangeListener_AutoRegister
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ModifiedRangesListener(Buffer& buffer)
|
|
|
|
: BufferChangeListener_AutoRegister(buffer) {}
|
|
|
|
|
|
|
|
void on_insert(const Buffer& buffer, BufferCoord begin, BufferCoord end)
|
|
|
|
{
|
|
|
|
m_ranges.update_insert(buffer, begin, end);
|
|
|
|
auto it = std::upper_bound(m_ranges.begin(), m_ranges.end(), begin,
|
|
|
|
[](BufferCoord c, const Selection& sel)
|
|
|
|
{ return c < sel.min(); });
|
|
|
|
m_ranges.emplace(it, begin, buffer.char_prev(end));
|
|
|
|
}
|
|
|
|
|
|
|
|
void on_erase(const Buffer& buffer, BufferCoord begin, BufferCoord end)
|
|
|
|
{
|
|
|
|
m_ranges.update_erase(buffer, begin, end);
|
|
|
|
auto pos = std::min(begin, buffer.back_coord());
|
|
|
|
auto it = std::upper_bound(m_ranges.begin(), m_ranges.end(), pos,
|
|
|
|
[](BufferCoord c, const Selection& sel)
|
|
|
|
{ return c < sel.min(); });
|
|
|
|
m_ranges.emplace(it, pos, pos);
|
|
|
|
}
|
|
|
|
SelectionList& ranges() { return m_ranges; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
SelectionList m_ranges;
|
|
|
|
};
|
|
|
|
|
2014-03-29 09:55:45 +01:00
|
|
|
inline bool touches(const Buffer& buffer, const Selection& lhs, const Selection& rhs)
|
2013-12-15 20:51:09 +01:00
|
|
|
{
|
|
|
|
return lhs.min() <= rhs.min() ? buffer.char_next(lhs.max()) >= rhs.min()
|
|
|
|
: lhs.min() <= buffer.char_next(rhs.max());
|
|
|
|
}
|
|
|
|
|
|
|
|
void undo(Context& context, int)
|
|
|
|
{
|
|
|
|
ModifiedRangesListener listener(context.buffer());
|
|
|
|
bool res = context.buffer().undo();
|
|
|
|
if (res and not listener.ranges().empty())
|
|
|
|
{
|
|
|
|
auto& selections = context.selections();
|
|
|
|
selections = std::move(listener.ranges());
|
|
|
|
selections.set_main_index(selections.size() - 1);
|
|
|
|
selections.merge_overlapping(std::bind(touches, std::ref(context.buffer()), _1, _2));
|
|
|
|
}
|
|
|
|
else if (not res)
|
|
|
|
context.print_status({ "nothing left to undo", get_color("Information") });
|
|
|
|
}
|
|
|
|
|
|
|
|
void redo(Context& context, int)
|
|
|
|
{
|
|
|
|
using namespace std::placeholders;
|
|
|
|
ModifiedRangesListener listener(context.buffer());
|
|
|
|
bool res = context.buffer().redo();
|
|
|
|
if (res and not listener.ranges().empty())
|
|
|
|
{
|
|
|
|
auto& selections = context.selections();
|
|
|
|
selections = std::move(listener.ranges());
|
|
|
|
selections.set_main_index(selections.size() - 1);
|
|
|
|
selections.merge_overlapping(std::bind(touches, std::ref(context.buffer()), _1, _2));
|
|
|
|
}
|
|
|
|
else if (not res)
|
|
|
|
context.print_status({ "nothing left to redo", get_color("Information") });
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2013-12-15 19:07:51 +01:00
|
|
|
ScopedEdition edition(context);
|
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)
|
|
|
|
{
|
2014-01-28 20:05:49 +01:00
|
|
|
auto cursor = context.has_window() ? context.window().offset_coord(sel.cursor(), offset)
|
|
|
|
: context.buffer().offset_coord(sel.cursor(), offset);
|
2013-12-15 15:14:52 +01:00
|
|
|
|
2014-01-28 20:05:49 +01:00
|
|
|
sel.anchor() = mode == SelectMode::Extend ? sel.anchor() : cursor;
|
|
|
|
sel.cursor() = cursor;
|
2013-12-15 15:14:52 +01:00
|
|
|
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 },
|
2013-12-26 11:40:22 +01:00
|
|
|
{ 'D', cat_erase_selections },
|
2013-10-26 19:42:36 +02:00
|
|
|
{ 'c', change },
|
2013-12-15 19:07:51 +01:00
|
|
|
{ 'i', enter_insert_mode<InsertMode::Insert> },
|
|
|
|
{ 'I', enter_insert_mode<InsertMode::InsertAtLineBegin> },
|
|
|
|
{ 'a', enter_insert_mode<InsertMode::Append> },
|
|
|
|
{ 'A', enter_insert_mode<InsertMode::AppendAtLineEnd> },
|
|
|
|
{ 'o', enter_insert_mode<InsertMode::OpenLineBelow> },
|
|
|
|
{ 'O', enter_insert_mode<InsertMode::OpenLineAbove> },
|
2013-10-26 19:42:36 +02:00
|
|
|
{ '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 },
|
|
|
|
|
2013-12-15 19:07:51 +01:00
|
|
|
{ '.', repeat_last_insert },
|
2013-10-26 19:42:36 +02:00
|
|
|
|
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 },
|
2013-12-24 17:48:52 +01:00
|
|
|
{ '|', pipe<InsertMode::Replace> },
|
|
|
|
{ alt('|'), pipe<InsertMode::Append> },
|
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); } },
|
2014-01-01 19:45:28 +01:00
|
|
|
{ 'w', repeated(make_select<SelectMode::Replace>(select_to_next_word<Word>)) },
|
|
|
|
{ 'e', repeated(make_select<SelectMode::Replace>(select_to_next_word_end<Word>)) },
|
|
|
|
{ 'b', repeated(make_select<SelectMode::Replace>(select_to_previous_word<Word>)) },
|
|
|
|
{ 'W', repeated(make_select<SelectMode::Extend>(select_to_next_word<Word>)) },
|
|
|
|
{ 'E', repeated(make_select<SelectMode::Extend>(select_to_next_word_end<Word>)) },
|
|
|
|
{ 'B', repeated(make_select<SelectMode::Extend>(select_to_previous_word<Word>)) },
|
|
|
|
|
|
|
|
{ alt('w'), repeated(make_select<SelectMode::Replace>(select_to_next_word<WORD>)) },
|
|
|
|
{ alt('e'), repeated(make_select<SelectMode::Replace>(select_to_next_word_end<WORD>)) },
|
|
|
|
{ alt('b'), repeated(make_select<SelectMode::Replace>(select_to_previous_word<WORD>)) },
|
|
|
|
{ alt('W'), repeated(make_select<SelectMode::Extend>(select_to_next_word<WORD>)) },
|
|
|
|
{ alt('E'), repeated(make_select<SelectMode::Extend>(select_to_next_word_end<WORD>)) },
|
|
|
|
{ alt('B'), repeated(make_select<SelectMode::Extend>(select_to_previous_word<WORD>)) },
|
|
|
|
|
|
|
|
{ alt('l'), repeated(make_select<SelectMode::Replace>(select_to_eol)) },
|
|
|
|
{ alt('L'), repeated(make_select<SelectMode::Extend>(select_to_eol)) },
|
|
|
|
{ alt('h'), repeated(make_select<SelectMode::Replace>(select_to_eol_reverse)) },
|
|
|
|
{ alt('H'), repeated(make_select<SelectMode::Extend>(select_to_eol_reverse)) },
|
|
|
|
|
|
|
|
{ 'x', repeated(make_select<SelectMode::Replace>(select_line)) },
|
|
|
|
{ 'X', repeated(make_select<SelectMode::Extend>(select_line)) },
|
|
|
|
{ alt('x'), make_select<SelectMode::Replace>(select_whole_lines) },
|
|
|
|
{ alt('X'), make_select<SelectMode::Replace>(trim_partial_lines) },
|
|
|
|
|
|
|
|
{ 'm', make_select<SelectMode::Replace>(select_matching) },
|
|
|
|
{ 'M', make_select<SelectMode::Extend>(select_matching) },
|
2013-10-26 19:42:36 +02:00
|
|
|
|
|
|
|
{ '/', 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> },
|
|
|
|
|
2013-12-15 20:51:09 +01:00
|
|
|
{ 'u', undo },
|
|
|
|
{ 'U', redo },
|
2013-10-26 19:42:36 +02:00
|
|
|
|
|
|
|
{ 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::ToBegin, SelectMode::Extend> },
|
2014-01-27 21:28:38 +01:00
|
|
|
{ '}', select_object<ObjectFlags::ToEnd, SelectMode::Extend> },
|
2013-10-26 19:42:36 +02:00
|
|
|
|
|
|
|
{ alt('j'), join },
|
|
|
|
{ alt('J'), join_select_spaces },
|
|
|
|
|
|
|
|
{ alt('k'), keep<true> },
|
|
|
|
{ alt('K'), keep<false> },
|
|
|
|
|
2014-01-27 21:28:38 +01:00
|
|
|
{ '<', deindent<true> },
|
|
|
|
{ '>', indent<false> },
|
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 },
|
2014-02-27 23:19:37 +01:00
|
|
|
{ alt('&'), copy_indent },
|
2013-07-02 14:55:34 +02:00
|
|
|
|
2014-03-02 02:04:26 +01:00
|
|
|
{ '@', tabs_to_spaces },
|
|
|
|
{ alt('@'), spaces_to_tabs },
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|