2011-09-02 18:51:20 +02:00
|
|
|
#include "window.hh"
|
|
|
|
#include "buffer.hh"
|
2012-05-03 09:25:13 +02:00
|
|
|
#include "shell_manager.hh"
|
2012-05-07 05:13:34 +02:00
|
|
|
#include "commands.hh"
|
2011-09-07 20:16:56 +02:00
|
|
|
#include "command_manager.hh"
|
2011-09-08 16:30:36 +02:00
|
|
|
#include "buffer_manager.hh"
|
2011-09-23 16:31:57 +02:00
|
|
|
#include "register_manager.hh"
|
2011-09-21 16:37:09 +02:00
|
|
|
#include "selectors.hh"
|
2011-09-09 21:24:18 +02:00
|
|
|
#include "assert.hh"
|
2011-10-07 16:16:38 +02:00
|
|
|
#include "debug.hh"
|
2011-11-29 23:37:20 +01:00
|
|
|
#include "highlighters.hh"
|
|
|
|
#include "highlighter_registry.hh"
|
2011-12-02 15:28:27 +01:00
|
|
|
#include "filters.hh"
|
|
|
|
#include "filter_registry.hh"
|
2012-04-03 14:01:01 +02:00
|
|
|
#include "hook_manager.hh"
|
2012-04-03 15:39:20 +02:00
|
|
|
#include "option_manager.hh"
|
2012-08-28 22:32:15 +02:00
|
|
|
#include "event_manager.hh"
|
2012-01-23 14:56:43 +01:00
|
|
|
#include "context.hh"
|
2012-02-16 15:25:16 +01:00
|
|
|
#include "ncurses.hh"
|
2012-08-29 21:49:36 +02:00
|
|
|
#include "string.hh"
|
2012-09-17 19:01:13 +02:00
|
|
|
#include "color_registry.hh"
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
#include <unordered_map>
|
2011-12-28 20:04:06 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2011-09-02 18:51:20 +02:00
|
|
|
|
|
|
|
using namespace Kakoune;
|
2011-09-23 16:27:34 +02:00
|
|
|
using namespace std::placeholders;
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
bool quit_requested = false;
|
|
|
|
|
2012-09-26 14:22:24 +02:00
|
|
|
template<InsertMode mode>
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_insert(Context& context)
|
2011-09-20 00:00:29 +02:00
|
|
|
{
|
2012-09-26 20:07:06 +02:00
|
|
|
context.client().insert(context, mode);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_repeat_insert(Context& context)
|
2011-12-05 15:28:45 +01:00
|
|
|
{
|
2012-09-26 14:13:04 +02:00
|
|
|
context.client().repeat_last_insert(context);
|
2011-12-05 15:28:45 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
template<SelectMode mode>
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_go(Context& context)
|
2011-09-22 16:02:07 +02:00
|
|
|
{
|
2012-08-05 19:39:37 +02:00
|
|
|
int count = context.numeric_param();
|
2011-09-22 16:02:07 +02:00
|
|
|
if (count != 0)
|
2011-10-10 16:24:17 +02:00
|
|
|
{
|
|
|
|
BufferIterator target =
|
2012-09-05 00:21:42 +02:00
|
|
|
context.editor().buffer().iterator_at_line_begin(count-1);
|
2011-10-10 16:24:17 +02:00
|
|
|
|
2012-09-05 00:21:42 +02:00
|
|
|
context.editor().select(target);
|
2012-08-21 20:58:10 +02:00
|
|
|
if (context.has_window())
|
|
|
|
context.window().center_selection();
|
2011-10-10 16:24:17 +02:00
|
|
|
}
|
2011-09-22 16:02:07 +02:00
|
|
|
else
|
2012-09-05 00:21:42 +02:00
|
|
|
context.client().on_next_key([](const Key& key, Context& context) {
|
|
|
|
if (key.modifiers != Key::Modifiers::None)
|
|
|
|
return;
|
2012-01-25 00:18:59 +01:00
|
|
|
|
2012-09-05 00:21:42 +02:00
|
|
|
Editor& editor = context.editor();
|
|
|
|
switch (key.key)
|
|
|
|
{
|
|
|
|
case 'g':
|
|
|
|
case 't':
|
|
|
|
editor.select(editor.buffer().begin());
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
case 'L':
|
2012-09-07 14:29:29 +02:00
|
|
|
editor.select(select_to_eol, mode);
|
2012-09-05 00:21:42 +02:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
case 'H':
|
2012-09-07 14:29:29 +02:00
|
|
|
editor.select(select_to_eol_reverse, mode);
|
2012-09-05 00:21:42 +02:00
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
{
|
|
|
|
const Buffer& buf = editor.buffer();
|
|
|
|
editor.select(buf.iterator_at_line_begin(buf.line_count() - 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2011-09-22 16:02:07 +02:00
|
|
|
}
|
|
|
|
|
2012-09-11 14:01:41 +02:00
|
|
|
void do_replace_with_char(Context& context)
|
|
|
|
{
|
|
|
|
context.client().on_next_key([](const Key& key, Context& context) {
|
|
|
|
context.editor().replace(String() + key.key);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_command(Context& context)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2012-09-03 14:22:02 +02:00
|
|
|
context.client().prompt(
|
|
|
|
":", std::bind(&CommandManager::complete, &CommandManager::instance(), _1, _2, _3),
|
2012-09-26 14:13:04 +02:00
|
|
|
[](const String& cmdline, Context& context) { CommandManager::instance().execute(cmdline, context); },
|
|
|
|
context);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_pipe(Context& context)
|
2011-12-28 20:04:06 +01:00
|
|
|
{
|
2012-09-03 14:22:02 +02:00
|
|
|
context.client().prompt("|", complete_nothing,
|
|
|
|
[](const String& cmdline, Context& context)
|
|
|
|
{
|
|
|
|
Editor& editor = context.editor();
|
|
|
|
std::vector<String> strings;
|
|
|
|
for (auto& sel : const_cast<const Editor&>(context.editor()).selections())
|
|
|
|
strings.push_back(ShellManager::instance().pipe(String(sel.begin(), sel.end()),
|
2012-09-09 17:10:53 +02:00
|
|
|
cmdline, context, {}, {}));
|
2012-09-03 14:22:02 +02:00
|
|
|
editor.replace(strings);
|
2012-09-26 14:13:04 +02:00
|
|
|
}, context);
|
2012-09-03 14:22:02 +02:00
|
|
|
|
2011-12-28 20:04:06 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
template<SelectMode mode>
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_search(Context& context)
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2012-09-03 14:22:02 +02:00
|
|
|
context.client().prompt("/", complete_nothing,
|
|
|
|
[](const String& str, Context& context) {
|
|
|
|
String ex = str;
|
|
|
|
if (ex.empty())
|
|
|
|
ex = RegisterManager::instance()['/'].values(context)[0];
|
|
|
|
else
|
|
|
|
RegisterManager::instance()['/'] = ex;
|
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
context.editor().select(std::bind(select_next_match, _1, ex), mode);
|
2012-09-26 14:13:04 +02:00
|
|
|
}, context);
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
template<SelectMode mode>
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_search_next(Context& context)
|
2011-09-24 14:48:58 +02:00
|
|
|
{
|
2012-08-05 20:13:41 +02:00
|
|
|
const String& ex = RegisterManager::instance()['/'].values(context)[0];
|
2011-09-24 14:48:58 +02:00
|
|
|
if (not ex.empty())
|
2012-09-07 14:29:29 +02:00
|
|
|
context.editor().select(std::bind(select_next_match, _1, ex), mode);
|
2011-09-24 14:48:58 +02:00
|
|
|
else
|
2012-08-15 22:36:45 +02:00
|
|
|
context.print_status("no search pattern");
|
2011-09-24 14:48:58 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_yank(Context& context)
|
2011-09-23 16:31:57 +02:00
|
|
|
{
|
2012-08-05 19:39:37 +02:00
|
|
|
RegisterManager::instance()['"'] = context.editor().selections_content();
|
2011-09-23 16:31:57 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_erase(Context& context)
|
2011-09-26 10:59:32 +02:00
|
|
|
{
|
2012-08-05 19:39:37 +02:00
|
|
|
RegisterManager::instance()['"'] = context.editor().selections_content();
|
|
|
|
context.editor().erase();
|
2011-09-26 10:59:32 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_change(Context& context)
|
2011-09-26 10:59:32 +02:00
|
|
|
{
|
2012-08-05 19:39:37 +02:00
|
|
|
RegisterManager::instance()['"'] = context.editor().selections_content();
|
2012-09-26 14:22:24 +02:00
|
|
|
do_insert<InsertMode::Change>(context);
|
2011-09-26 10:59:32 +02:00
|
|
|
}
|
|
|
|
|
2012-07-11 14:15:27 +02:00
|
|
|
enum class PasteMode
|
|
|
|
{
|
|
|
|
Before,
|
|
|
|
After,
|
|
|
|
Replace
|
|
|
|
};
|
|
|
|
|
|
|
|
template<PasteMode paste_mode>
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_paste(Context& context)
|
2011-09-23 16:31:57 +02:00
|
|
|
{
|
2012-08-05 19:39:37 +02:00
|
|
|
Editor& editor = context.editor();
|
|
|
|
int count = context.numeric_param();
|
2012-02-10 15:00:21 +01:00
|
|
|
Register& reg = RegisterManager::instance()['"'];
|
|
|
|
if (count == 0)
|
|
|
|
{
|
2012-07-11 14:15:27 +02:00
|
|
|
if (paste_mode == PasteMode::Before)
|
2012-08-05 20:13:41 +02:00
|
|
|
editor.insert(reg.values(context));
|
2012-07-11 14:15:27 +02:00
|
|
|
else if (paste_mode == PasteMode::After)
|
2012-08-05 20:13:41 +02:00
|
|
|
editor.append(reg.values(context));
|
2012-07-11 14:15:27 +02:00
|
|
|
else if (paste_mode == PasteMode::Replace)
|
2012-08-05 20:13:41 +02:00
|
|
|
editor.replace(reg.values(context));
|
2012-02-10 15:00:21 +01:00
|
|
|
}
|
2011-09-27 16:15:20 +02:00
|
|
|
else
|
2012-02-10 15:00:21 +01:00
|
|
|
{
|
2012-07-11 14:15:27 +02:00
|
|
|
if (paste_mode == PasteMode::Before)
|
2012-08-05 20:13:41 +02:00
|
|
|
editor.insert(reg.values(context)[count-1]);
|
2012-07-11 14:15:27 +02:00
|
|
|
else if (paste_mode == PasteMode::After)
|
2012-08-05 20:13:41 +02:00
|
|
|
editor.append(reg.values(context)[count-1]);
|
2012-07-11 14:15:27 +02:00
|
|
|
else if (paste_mode == PasteMode::Replace)
|
2012-08-05 20:13:41 +02:00
|
|
|
editor.replace(reg.values(context)[count-1]);
|
2012-02-10 15:00:21 +01:00
|
|
|
}
|
2011-09-23 16:31:57 +02:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_select_regex(Context& context)
|
2011-11-16 15:06:01 +01:00
|
|
|
{
|
2012-09-03 14:22:02 +02:00
|
|
|
context.client().prompt("select: ", complete_nothing,
|
|
|
|
[](const String& ex, Context& context)
|
2012-09-26 14:13:04 +02:00
|
|
|
{ context.editor().multi_select(std::bind(select_all_matches, _1, ex)); },
|
|
|
|
context);
|
2011-11-16 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_split_regex(Context& context)
|
2011-11-21 20:30:44 +01:00
|
|
|
{
|
2012-09-03 14:22:02 +02:00
|
|
|
context.client().prompt("select: ", complete_nothing,
|
|
|
|
[](const String& ex, Context& context)
|
2012-09-26 14:13:04 +02:00
|
|
|
{ context.editor().multi_select(std::bind(split_selection, _1, ex)); },
|
|
|
|
context);
|
2011-11-21 20:30:44 +01:00
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_join(Context& context)
|
2011-11-22 15:24:50 +01:00
|
|
|
{
|
2012-08-05 19:39:37 +02:00
|
|
|
Editor& editor = context.editor();
|
2012-02-07 15:26:51 +01:00
|
|
|
editor.select(select_whole_lines);
|
2012-09-07 14:29:29 +02:00
|
|
|
editor.select(select_to_eol, SelectMode::Extend);
|
2012-02-02 21:48:03 +01:00
|
|
|
editor.multi_select(std::bind(select_all_matches, _1, "\n\\h*"));
|
|
|
|
editor.replace(" ");
|
|
|
|
editor.clear_selections();
|
|
|
|
editor.move_selections({0, -1});
|
2011-11-22 15:24:50 +01:00
|
|
|
}
|
|
|
|
|
2012-03-12 15:23:30 +01:00
|
|
|
template<bool inner>
|
2012-08-06 22:02:11 +02:00
|
|
|
void do_select_object(Context& context)
|
2012-01-04 15:18:08 +01:00
|
|
|
{
|
2012-09-05 00:21:42 +02:00
|
|
|
context.client().on_next_key(
|
|
|
|
[](const Key& key, Context& context) {
|
|
|
|
typedef std::function<SelectionAndCaptures (const Selection&)> Selector;
|
|
|
|
static const std::unordered_map<Key, Selector> key_to_selector =
|
|
|
|
{
|
|
|
|
{ { Key::Modifiers::None, '(' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '(', ')' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, ')' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '(', ')' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, 'b' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '(', ')' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, '{' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '{', '}' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, '}' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '{', '}' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, 'B' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '{', '}' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, '[' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '[', ']' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, ']' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '[', ']' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, '<' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '<', '>' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, '>' }, std::bind(select_surrounding, _1, std::pair<char, char>{ '<', '>' }, inner) },
|
|
|
|
{ { Key::Modifiers::None, 'w' }, std::bind(select_whole_word<false>, _1, inner) },
|
|
|
|
{ { Key::Modifiers::None, 'W' }, std::bind(select_whole_word<true>, _1, inner) },
|
|
|
|
};
|
|
|
|
|
|
|
|
auto it = key_to_selector.find(key);
|
|
|
|
if (it != key_to_selector.end())
|
|
|
|
context.editor().select(it->second);
|
|
|
|
});
|
2012-01-04 15:18:08 +01:00
|
|
|
}
|
|
|
|
|
2012-09-07 21:09:23 +02:00
|
|
|
template<Key::NamedKey key>
|
|
|
|
void do_scroll(Context& context)
|
|
|
|
{
|
|
|
|
static_assert(key == Key::PageUp or key == Key::PageDown,
|
|
|
|
"do_scrool only implements PageUp and PageDown");
|
|
|
|
Window& window = context.window();
|
|
|
|
Buffer& buffer = context.buffer();
|
|
|
|
BufferCoord position = window.position();
|
|
|
|
BufferIterator cursor_pos;
|
|
|
|
|
|
|
|
if (key == Key::PageUp)
|
|
|
|
{
|
|
|
|
position.line -= (window.dimensions().line - 2);
|
|
|
|
cursor_pos = buffer.iterator_at(position);
|
|
|
|
}
|
|
|
|
else if (key == Key::PageDown)
|
|
|
|
{
|
|
|
|
position.line += (window.dimensions().line - 2);
|
|
|
|
cursor_pos = buffer.iterator_at(position + BufferCoord{window.dimensions().line - 1, 0});
|
|
|
|
}
|
|
|
|
|
|
|
|
window.select(cursor_pos);
|
|
|
|
window.set_position(position);
|
|
|
|
}
|
|
|
|
|
2012-08-05 19:53:39 +02:00
|
|
|
template<typename T>
|
|
|
|
class Repeated
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Repeated(T t) : m_func(t) {}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
void operator() (Context& context)
|
2012-08-05 19:53:39 +02:00
|
|
|
{
|
|
|
|
int count = context.numeric_param();
|
|
|
|
do { m_func(context); } while(--count > 0);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
T m_func;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
Repeated<T> repeated(T func) { return Repeated<T>(func); }
|
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
namespace SelectFlags
|
2012-09-05 00:30:59 +02:00
|
|
|
{
|
2012-09-07 14:29:29 +02:00
|
|
|
enum Type
|
2012-09-05 00:30:59 +02:00
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
Reverse = 1,
|
|
|
|
Inclusive = 2,
|
2012-09-07 14:29:29 +02:00
|
|
|
Extend = 4
|
2012-09-05 00:30:59 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
template<int flags>
|
|
|
|
void select_to_next_char(Context& context)
|
|
|
|
{
|
|
|
|
int param = context.numeric_param();
|
|
|
|
context.client().on_next_key([param](const Key& key, Context& context) {
|
|
|
|
context.editor().select(
|
2012-09-07 14:29:29 +02:00
|
|
|
std::bind(flags & SelectFlags::Reverse ? select_to_reverse : select_to,
|
|
|
|
_1, key.key, param, flags & SelectFlags::Inclusive),
|
|
|
|
flags & SelectFlags::Extend ? SelectMode::Extend : SelectMode::Replace);
|
2012-09-05 00:30:59 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-09-10 20:10:18 +02:00
|
|
|
String runtime_directory()
|
|
|
|
{
|
|
|
|
char buffer[2048];
|
|
|
|
#if defined(__linux__)
|
|
|
|
ssize_t res = readlink("/proc/self/exe", buffer, 2048);
|
|
|
|
assert(res != -1);
|
|
|
|
buffer[res] = '\0';
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
uint32_t bufsize = 2048;
|
|
|
|
_NSGetExecutablePath(buffer, &bufsize);
|
|
|
|
char* canonical_path = realpath(buffer, NULL);
|
|
|
|
strncpy(buffer, canonical_path, 2048);
|
|
|
|
free(canonical_path);
|
|
|
|
#else
|
|
|
|
# error "finding executable path is not implemented on this platform"
|
|
|
|
#endif
|
|
|
|
char* ptr = strrchr(buffer, '/');
|
|
|
|
if (not ptr)
|
|
|
|
throw runtime_error("unable do determine runtime directory");
|
|
|
|
return String(buffer, ptr);
|
|
|
|
}
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
std::unordered_map<Key, std::function<void (Context& context)>> keymap =
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2012-08-22 23:33:52 +02:00
|
|
|
{ { Key::Modifiers::None, 'h' }, [](Context& context) { context.editor().move_selections({ 0, -std::max(context.numeric_param(),1) }); } },
|
|
|
|
{ { Key::Modifiers::None, 'j' }, [](Context& context) { context.editor().move_selections({ std::max(context.numeric_param(),1), 0 }); } },
|
|
|
|
{ { Key::Modifiers::None, 'k' }, [](Context& context) { context.editor().move_selections({ -std::max(context.numeric_param(),1), 0 }); } },
|
|
|
|
{ { Key::Modifiers::None, 'l' }, [](Context& context) { context.editor().move_selections({ 0, std::max(context.numeric_param(),1) }); } },
|
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
{ { Key::Modifiers::None, 'H' }, [](Context& context) { context.editor().move_selections({ 0, -std::max(context.numeric_param(),1) }, SelectMode::Extend); } },
|
|
|
|
{ { Key::Modifiers::None, 'J' }, [](Context& context) { context.editor().move_selections({ std::max(context.numeric_param(),1), 0 }, SelectMode::Extend); } },
|
|
|
|
{ { Key::Modifiers::None, 'K' }, [](Context& context) { context.editor().move_selections({ -std::max(context.numeric_param(),1), 0 }, SelectMode::Extend); } },
|
|
|
|
{ { Key::Modifiers::None, 'L' }, [](Context& context) { context.editor().move_selections({ 0, std::max(context.numeric_param(),1) }, SelectMode::Extend); } },
|
2011-10-07 16:03:25 +02:00
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
{ { Key::Modifiers::None, 't' }, select_to_next_char<SelectFlags::None> },
|
|
|
|
{ { Key::Modifiers::None, 'f' }, select_to_next_char<SelectFlags::Inclusive> },
|
|
|
|
{ { Key::Modifiers::None, 'T' }, select_to_next_char<SelectFlags::Extend> },
|
|
|
|
{ { Key::Modifiers::None, 'F' }, select_to_next_char<SelectFlags::Inclusive | SelectFlags::Extend> },
|
|
|
|
{ { Key::Modifiers::Alt, 't' }, select_to_next_char<SelectFlags::Reverse> },
|
|
|
|
{ { Key::Modifiers::Alt, 'f' }, select_to_next_char<SelectFlags::Inclusive | SelectFlags::Reverse> },
|
|
|
|
{ { Key::Modifiers::Alt, 'T' }, select_to_next_char<SelectFlags::Extend | SelectFlags::Reverse> },
|
|
|
|
{ { Key::Modifiers::Alt, 'F' }, select_to_next_char<SelectFlags::Inclusive | SelectFlags::Extend | SelectFlags::Reverse> },
|
2011-09-22 16:35:28 +02:00
|
|
|
|
2011-12-21 15:29:28 +01:00
|
|
|
{ { Key::Modifiers::None, 'd' }, do_erase },
|
|
|
|
{ { Key::Modifiers::None, 'c' }, do_change },
|
2012-09-26 14:22:24 +02:00
|
|
|
{ { Key::Modifiers::None, 'i' }, do_insert<InsertMode::Insert> },
|
|
|
|
{ { Key::Modifiers::None, 'I' }, do_insert<InsertMode::InsertAtLineBegin> },
|
|
|
|
{ { Key::Modifiers::None, 'a' }, do_insert<InsertMode::Append> },
|
|
|
|
{ { Key::Modifiers::None, 'A' }, do_insert<InsertMode::AppendAtLineEnd> },
|
|
|
|
{ { Key::Modifiers::None, 'o' }, do_insert<InsertMode::OpenLineBelow> },
|
|
|
|
{ { Key::Modifiers::None, 'O' }, do_insert<InsertMode::OpenLineAbove> },
|
2012-09-11 14:01:41 +02:00
|
|
|
{ { Key::Modifiers::None, 'r' }, do_replace_with_char },
|
2011-09-22 11:24:16 +02:00
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
{ { Key::Modifiers::None, 'g' }, do_go<SelectMode::Replace> },
|
|
|
|
{ { Key::Modifiers::None, 'G' }, do_go<SelectMode::Extend> },
|
2011-09-22 11:24:16 +02:00
|
|
|
|
2011-12-21 15:29:28 +01:00
|
|
|
{ { Key::Modifiers::None, 'y' }, do_yank },
|
2012-07-11 14:15:27 +02:00
|
|
|
{ { Key::Modifiers::None, 'p' }, do_paste<PasteMode::After> },
|
|
|
|
{ { Key::Modifiers::None, 'P' }, do_paste<PasteMode::Before> },
|
|
|
|
{ { Key::Modifiers::Alt, 'p' }, do_paste<PasteMode::Replace> },
|
2011-09-23 16:31:57 +02:00
|
|
|
|
2011-12-21 15:29:28 +01:00
|
|
|
{ { Key::Modifiers::None, 's' }, do_select_regex },
|
2011-11-16 15:06:01 +01:00
|
|
|
|
2011-12-21 15:29:28 +01:00
|
|
|
{ { Key::Modifiers::None, '.' }, do_repeat_insert },
|
2011-12-05 15:28:45 +01:00
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
{ { Key::Modifiers::None, '%' }, [](Context& context) { context.editor().clear_selections(); context.editor().select(select_whole_buffer); } },
|
2011-09-24 15:45:25 +02:00
|
|
|
|
2012-08-05 19:39:37 +02:00
|
|
|
{ { Key::Modifiers::None, ':' }, do_command },
|
2011-12-28 20:04:06 +01:00
|
|
|
{ { Key::Modifiers::None, '|' }, do_pipe },
|
2012-08-06 22:02:11 +02:00
|
|
|
{ { Key::Modifiers::None, ' ' }, [](Context& context) { int count = context.numeric_param();
|
|
|
|
if (count == 0) context.editor().clear_selections();
|
|
|
|
else context.editor().keep_selection(count-1); } },
|
|
|
|
{ { Key::Modifiers::Alt, ' ' }, [](Context& context) { int count = context.numeric_param();
|
|
|
|
if (count == 0) context.editor().clear_selections();
|
|
|
|
else context.editor().remove_selection(count-1); } },
|
|
|
|
{ { Key::Modifiers::None, 'w' }, repeated([](Context& context) { context.editor().select(select_to_next_word<false>); }) },
|
|
|
|
{ { Key::Modifiers::None, 'e' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<false>); }) },
|
|
|
|
{ { Key::Modifiers::None, 'b' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<false>); }) },
|
2012-09-07 14:29:29 +02:00
|
|
|
{ { Key::Modifiers::None, 'W' }, repeated([](Context& context) { context.editor().select(select_to_next_word<false>, SelectMode::Extend); }) },
|
|
|
|
{ { Key::Modifiers::None, 'E' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<false>, SelectMode::Extend); }) },
|
|
|
|
{ { Key::Modifiers::None, 'B' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<false>, SelectMode::Extend); }) },
|
|
|
|
{ { Key::Modifiers::None, 'x' }, repeated([](Context& context) { context.editor().select(select_line, SelectMode::Replace); }) },
|
|
|
|
{ { Key::Modifiers::None, 'X' }, repeated([](Context& context) { context.editor().select(select_line, SelectMode::Extend); }) },
|
2012-08-06 22:02:11 +02:00
|
|
|
{ { Key::Modifiers::None, 'm' }, [](Context& context) { context.editor().select(select_matching); } },
|
2012-09-07 14:29:29 +02:00
|
|
|
{ { Key::Modifiers::None, 'M' }, [](Context& context) { context.editor().select(select_matching, SelectMode::Extend); } },
|
2012-08-05 19:39:37 +02:00
|
|
|
|
2012-09-07 14:29:29 +02:00
|
|
|
{ { Key::Modifiers::None, '/' }, do_search<SelectMode::Replace> },
|
|
|
|
{ { Key::Modifiers::None, '?' }, do_search<SelectMode::Extend> },
|
|
|
|
{ { Key::Modifiers::None, 'n' }, do_search_next<SelectMode::Replace> },
|
|
|
|
{ { Key::Modifiers::None, 'N' }, do_search_next<SelectMode::Extend> },
|
2012-08-05 19:39:37 +02:00
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
{ { Key::Modifiers::None, 'u' }, repeated([](Context& context) { if (not context.editor().undo()) { context.print_status("nothing left to undo"); } }) },
|
|
|
|
{ { Key::Modifiers::None, 'U' }, repeated([](Context& context) { if (not context.editor().redo()) { context.print_status("nothing left to redo"); } }) },
|
2011-12-21 15:29:28 +01:00
|
|
|
|
2012-03-12 15:23:30 +01:00
|
|
|
{ { Key::Modifiers::Alt, 'i' }, do_select_object<true> },
|
|
|
|
{ { Key::Modifiers::Alt, 'a' }, do_select_object<false> },
|
2012-01-04 15:18:08 +01:00
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
{ { Key::Modifiers::Alt, 'w' }, repeated([](Context& context) { context.editor().select(select_to_next_word<true>); }) },
|
|
|
|
{ { Key::Modifiers::Alt, 'e' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<true>); }) },
|
|
|
|
{ { Key::Modifiers::Alt, 'b' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<true>); }) },
|
2012-09-07 14:29:29 +02:00
|
|
|
{ { Key::Modifiers::Alt, 'W' }, repeated([](Context& context) { context.editor().select(select_to_next_word<true>, SelectMode::Extend); }) },
|
|
|
|
{ { Key::Modifiers::Alt, 'E' }, repeated([](Context& context) { context.editor().select(select_to_next_word_end<true>, SelectMode::Extend); }) },
|
|
|
|
{ { Key::Modifiers::Alt, 'B' }, repeated([](Context& context) { context.editor().select(select_to_previous_word<true>, SelectMode::Extend); }) },
|
|
|
|
|
|
|
|
{ { Key::Modifiers::Alt, 'l' }, repeated([](Context& context) { context.editor().select(select_to_eol, SelectMode::Replace); }) },
|
|
|
|
{ { Key::Modifiers::Alt, 'L' }, repeated([](Context& context) { context.editor().select(select_to_eol, SelectMode::Extend); }) },
|
|
|
|
{ { Key::Modifiers::Alt, 'h' }, repeated([](Context& context) { context.editor().select(select_to_eol_reverse, SelectMode::Replace); }) },
|
|
|
|
{ { Key::Modifiers::Alt, 'H' }, repeated([](Context& context) { context.editor().select(select_to_eol_reverse, SelectMode::Extend); }) },
|
2011-12-21 15:29:28 +01:00
|
|
|
|
|
|
|
{ { Key::Modifiers::Alt, 's' }, do_split_regex },
|
|
|
|
|
|
|
|
{ { Key::Modifiers::Alt, 'j' }, do_join },
|
|
|
|
|
2012-08-06 22:02:11 +02:00
|
|
|
{ { Key::Modifiers::Alt, 'x' }, [](Context& context) { context.editor().select(select_whole_lines); } },
|
2012-08-21 20:06:35 +02:00
|
|
|
|
|
|
|
{ { Key::Modifiers::Alt, 'c' }, [](Context& context) { if (context.has_window()) context.window().center_selection(); } },
|
2012-09-07 21:09:23 +02:00
|
|
|
|
|
|
|
{ { Key::Modifiers::None, Key::PageUp }, do_scroll<Key::PageUp> },
|
|
|
|
{ { Key::Modifiers::None, Key::PageDown }, do_scroll<Key::PageDown> },
|
2011-10-25 16:28:20 +02:00
|
|
|
};
|
|
|
|
|
2012-05-03 09:24:27 +02:00
|
|
|
}
|
|
|
|
|
2012-03-21 20:27:36 +01:00
|
|
|
void run_unit_tests();
|
|
|
|
|
2011-09-21 16:37:09 +02:00
|
|
|
int main(int argc, char* argv[])
|
2011-09-02 18:51:20 +02:00
|
|
|
{
|
2012-08-29 00:11:16 +02:00
|
|
|
EventManager event_manager;
|
2012-06-14 15:20:40 +02:00
|
|
|
GlobalOptionManager option_manager;
|
|
|
|
GlobalHookManager hook_manager;
|
2012-05-03 09:25:13 +02:00
|
|
|
ShellManager shell_manager;
|
2011-11-29 23:37:20 +01:00
|
|
|
CommandManager command_manager;
|
|
|
|
BufferManager buffer_manager;
|
|
|
|
RegisterManager register_manager;
|
|
|
|
HighlighterRegistry highlighter_registry;
|
2011-12-02 15:28:27 +01:00
|
|
|
FilterRegistry filter_registry;
|
2012-09-17 19:01:13 +02:00
|
|
|
ColorRegistry color_registry;
|
2011-09-23 16:29:42 +02:00
|
|
|
|
2012-03-21 20:27:36 +01:00
|
|
|
run_unit_tests();
|
|
|
|
|
2012-05-03 09:25:13 +02:00
|
|
|
shell_manager.register_env_var("bufname",
|
2012-06-25 19:40:18 +02:00
|
|
|
[](const String& name, const Context& context)
|
2012-05-03 09:25:13 +02:00
|
|
|
{ return context.buffer().name(); });
|
2012-05-07 08:56:53 +02:00
|
|
|
shell_manager.register_env_var("selection",
|
2012-06-25 19:40:18 +02:00
|
|
|
[](const String& name, const Context& context)
|
2012-09-24 13:56:39 +02:00
|
|
|
{ return context.editor().selections_content().back(); });
|
2012-09-10 20:10:18 +02:00
|
|
|
shell_manager.register_env_var("runtime",
|
|
|
|
[](const String& name, const Context& context)
|
|
|
|
{ return runtime_directory(); });
|
2012-06-27 14:28:43 +02:00
|
|
|
shell_manager.register_env_var("opt_.+",
|
|
|
|
[](const String& name, const Context& context)
|
2012-06-28 14:01:37 +02:00
|
|
|
{ return context.option_manager()[name.substr(4)].as_string(); });
|
2012-08-05 20:13:41 +02:00
|
|
|
shell_manager.register_env_var("reg_.+",
|
|
|
|
[](const String& name, const Context& context)
|
|
|
|
{ return RegisterManager::instance()[name[4]].values(context)[0]; });
|
2012-06-29 18:37:17 +02:00
|
|
|
|
2012-08-05 20:13:41 +02:00
|
|
|
register_manager.register_dynamic_register('%', [&](const Context& context) { return std::vector<String>(1, context.buffer().name()); });
|
|
|
|
register_manager.register_dynamic_register('.', [&](const Context& context) { return context.editor().selections_content(); });
|
2012-06-29 18:37:17 +02:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
register_commands();
|
2011-11-29 23:37:20 +01:00
|
|
|
register_highlighters();
|
2011-12-02 15:28:27 +01:00
|
|
|
register_filters();
|
2011-11-08 15:28:01 +01:00
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
try
|
|
|
|
{
|
2012-09-26 14:13:04 +02:00
|
|
|
Client client;
|
|
|
|
NCursesUI ui;
|
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
Context context(client);
|
2012-09-26 14:13:04 +02:00
|
|
|
context.change_ui(ui);
|
2012-06-06 01:15:19 +02:00
|
|
|
|
2012-06-12 15:10:33 +02:00
|
|
|
try
|
|
|
|
{
|
2012-08-28 14:10:44 +02:00
|
|
|
Context initialisation_context;
|
2012-09-10 20:10:18 +02:00
|
|
|
command_manager.execute("source " + runtime_directory() + "/kakrc",
|
|
|
|
initialisation_context);
|
2012-06-12 15:10:33 +02:00
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& error)
|
|
|
|
{
|
2012-08-15 22:36:45 +02:00
|
|
|
context.print_status(error.description());
|
2012-06-12 15:10:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-28 19:52:29 +01:00
|
|
|
write_debug("*** This is the debug buffer, where debug info will be written ***\n");
|
2012-04-14 03:17:09 +02:00
|
|
|
write_debug("utf-8 test: é á ï");
|
2011-11-28 19:52:29 +01:00
|
|
|
|
2012-05-07 05:13:34 +02:00
|
|
|
if (argc > 1)
|
2012-08-07 14:00:47 +02:00
|
|
|
{
|
|
|
|
String cmd = "edit ";
|
|
|
|
for (int i = 1; i < argc; ++i)
|
|
|
|
cmd += String(" ") + argv[i];
|
|
|
|
command_manager.execute(cmd, context);
|
|
|
|
}
|
2012-05-07 05:13:34 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
auto buffer = new Buffer("*scratch*", Buffer::Type::Scratch);
|
2012-08-15 22:36:45 +02:00
|
|
|
context.change_editor(*buffer->get_or_create_window());
|
2012-05-07 05:13:34 +02:00
|
|
|
}
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-09-03 14:22:02 +02:00
|
|
|
event_manager.watch(0, [&](int) { client.handle_next_input(context); });
|
2012-08-28 22:32:15 +02:00
|
|
|
|
2012-08-15 22:36:45 +02:00
|
|
|
context.draw_ifn();
|
2011-09-02 18:51:20 +02:00
|
|
|
while(not quit_requested)
|
2012-09-03 14:22:02 +02:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
event_manager.handle_next_events();
|
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& error)
|
|
|
|
{
|
|
|
|
context.print_status(error.description());
|
|
|
|
}
|
|
|
|
}
|
2011-09-02 18:51:20 +02:00
|
|
|
}
|
2011-09-09 21:24:18 +02:00
|
|
|
catch (Kakoune::exception& error)
|
|
|
|
{
|
|
|
|
puts("uncaught exception:\n");
|
|
|
|
puts(error.description().c_str());
|
|
|
|
return -1;
|
|
|
|
}
|
2011-09-02 18:51:20 +02:00
|
|
|
return 0;
|
|
|
|
}
|