kakoune/src/client.cc

1305 lines
43 KiB
C++
Raw Normal View History

2013-09-12 23:47:23 +02:00
#include "client.hh"
#include "color_registry.hh"
#include "context.hh"
#include "editor.hh"
#include "event_manager.hh"
#include "normal.hh"
#include "register_manager.hh"
#include "buffer_manager.hh"
#include "user_interface.hh"
#include "utf8.hh"
#include "window.hh"
#include "file.hh"
#include "remote.hh"
#include "client_manager.hh"
#include <unordered_map>
namespace Kakoune
{
2012-10-17 13:14:03 +02:00
class InputMode
{
public:
2013-09-12 23:47:23 +02:00
InputMode(Client& client) : m_client(client) {}
2012-10-17 13:14:03 +02:00
virtual ~InputMode() {}
InputMode(const InputMode&) = delete;
InputMode& operator=(const InputMode&) = delete;
2013-07-26 01:44:25 +02:00
virtual void on_key(Key key) = 0;
virtual void on_replaced() {}
2013-09-12 23:47:23 +02:00
Context& context() const { return m_client.context(); }
virtual String description() const = 0;
2013-10-25 01:01:17 +02:00
virtual KeymapMode keymap_mode() const = 0;
2013-09-12 23:47:23 +02:00
using Insertion = Client::Insertion;
Insertion& last_insert() { return m_client.m_last_insert; }
protected:
2013-10-26 12:49:16 +02:00
void reset_normal_mode();
2012-09-24 19:39:40 +02:00
private:
2013-09-12 23:47:23 +02:00
Client& m_client;
};
2012-10-17 13:14:03 +02:00
namespace InputModes
{
static constexpr std::chrono::milliseconds idle_timeout{100};
static constexpr std::chrono::milliseconds fs_check_timeout{500};
2012-10-17 13:14:03 +02:00
class Normal : public InputMode
{
public:
2013-09-12 23:47:23 +02:00
Normal(Client& client)
: InputMode(client),
2013-01-29 13:58:19 +01:00
m_idle_timer{Clock::now() + idle_timeout, [this](Timer& timer) {
context().hooks().run_hook("NormalIdle", "", context());
}},
m_fs_check_timer{Clock::now() + fs_check_timeout, [this](Timer& timer) {
context().client().check_buffer_fs_timestamp();
timer.set_next_date(Clock::now() + fs_check_timeout);
2013-01-29 13:58:19 +01:00
}}
2013-01-30 19:04:03 +01:00
{
context().client().check_buffer_fs_timestamp();
2013-01-30 19:04:03 +01:00
context().hooks().run_hook("NormalBegin", "", context());
}
void on_replaced() override
2013-01-30 19:04:03 +01:00
{
context().hooks().run_hook("NormalEnd", "", context());
}
2013-07-26 01:44:25 +02:00
void on_key(Key key) override
{
if (key.modifiers == Key::Modifiers::None and isdigit(key.key))
m_count = m_count * 10 + key.key - '0';
else
{
auto it = keymap.find(key);
if (it != keymap.end())
it->second(context(), m_count);
m_count = 0;
}
2013-01-30 19:04:03 +01:00
context().hooks().run_hook("NormalKey", key_to_str(key), context());
2013-01-29 13:58:19 +01:00
m_idle_timer.set_next_date(Clock::now() + idle_timeout);
}
String description() const override
{
return to_string(context().editor().selections().size()) +
(m_count != 0 ? " sel; param=" + to_string(m_count) : " sel");
}
2013-10-25 01:01:17 +02:00
KeymapMode keymap_mode() const override { return KeymapMode::Normal; }
private:
int m_count = 0;
2013-01-29 13:58:19 +01:00
Timer m_idle_timer;
Timer m_fs_check_timer;
};
class LineEditor
{
public:
2013-07-26 01:44:25 +02:00
void handle_key(Key key)
{
if (key == Key::Left or
key == Key{Key::Modifiers::Control, 'b'})
{
if (m_cursor_pos > 0)
--m_cursor_pos;
}
else if (key == Key::Right or
key == Key{Key::Modifiers::Control, 'f'})
{
if (m_cursor_pos < m_line.char_length())
++m_cursor_pos;
}
else if (key == Key::Home)
m_cursor_pos = 0;
else if (key == Key::End)
m_cursor_pos = m_line.char_length();
else if (key == Key::Backspace)
{
if (m_cursor_pos != 0)
{
m_line = m_line.substr(0, m_cursor_pos - 1)
+ m_line.substr(m_cursor_pos);
--m_cursor_pos;
}
}
else
{
m_line = m_line.substr(0, m_cursor_pos) + codepoint_to_str(key.key)
+ m_line.substr(m_cursor_pos);
++m_cursor_pos;
}
}
void insert(const String& str)
{
insert_from(m_cursor_pos, str);
}
void insert_from(CharCount start, const String& str)
{
kak_assert(start <= m_cursor_pos);
m_line = m_line.substr(0, start) + str
+ m_line.substr(m_cursor_pos);
m_cursor_pos = start + str.char_length();
}
void reset(String line)
{
m_line = std::move(line);
m_cursor_pos = m_line.char_length();
}
const String& line() const { return m_line; }
CharCount cursor_pos() const { return m_cursor_pos; }
DisplayLine build_display_line() const
{
kak_assert(m_cursor_pos <= m_line.char_length());
if (m_cursor_pos == m_line.char_length())
return DisplayLine{{ {m_line, get_color("StatusLine")},
{" "_str, get_color("StatusCursor")} }};
else
return DisplayLine({ { m_line.substr(0, m_cursor_pos), get_color("StatusLine") },
{ m_line.substr(m_cursor_pos, 1), get_color("StatusCursor") },
{ m_line.substr(m_cursor_pos+1), get_color("StatusLine") } });
}
private:
CharCount m_cursor_pos = 0;
String m_line;
};
2012-10-17 13:14:03 +02:00
class Menu : public InputMode
{
public:
2013-09-12 23:47:23 +02:00
Menu(Client& client, memoryview<String> choices,
MenuCallback callback)
2013-09-12 23:47:23 +02:00
: InputMode(client),
m_callback(callback), m_choices(choices.begin(), choices.end()),
m_selected(m_choices.begin())
{
DisplayCoord menu_pos{ context().ui().dimensions().line, 0_char };
2013-04-04 18:47:34 +02:00
context().ui().menu_show(choices, menu_pos, get_color("MenuForeground"),
get_color("MenuBackground"), MenuStyle::Prompt);
2012-09-03 19:20:41 +02:00
}
2013-07-26 01:44:25 +02:00
void on_key(Key key) override
{
auto match_filter = [this](const String& str) {
return boost::regex_match(str.begin(), str.end(), m_filter);
};
if (key == Key(Key::Modifiers::Control, 'm'))
{
2013-01-28 13:48:34 +01:00
context().ui().menu_hide();
context().print_status(DisplayLine{});
2012-09-24 19:39:40 +02:00
reset_normal_mode();
int selected = m_selected - m_choices.begin();
2013-01-28 13:48:34 +01:00
m_callback(selected, MenuEvent::Validate, context());
return;
}
else if (key == Key::Escape or key == ctrl('c'))
{
if (m_edit_filter)
{
m_edit_filter = false;
m_filter = boost::regex(".*");
m_filter_editor.reset("");
context().print_status(DisplayLine{});
}
else
{
2013-01-28 13:48:34 +01:00
context().ui().menu_hide();
reset_normal_mode();
int selected = m_selected - m_choices.begin();
2013-01-28 13:48:34 +01:00
m_callback(selected, MenuEvent::Abort, context());
}
}
else if (key == Key::Down or
key == Key(Key::Modifiers::Control, 'i') or
key == Key(Key::Modifiers::Control, 'n') or
key == Key(Key::Modifiers::None, 'j'))
{
auto it = std::find_if(m_selected+1, m_choices.end(), match_filter);
if (it == m_choices.end())
it = std::find_if(m_choices.begin(), m_selected, match_filter);
2013-01-28 13:48:34 +01:00
select(it);
}
else if (key == Key::Up or
key == Key::BackTab or
key == Key(Key::Modifiers::Control, 'p') or
key == Key(Key::Modifiers::None, 'k'))
{
ChoiceList::const_reverse_iterator selected(m_selected+1);
auto it = std::find_if(selected+1, m_choices.rend(), match_filter);
if (it == m_choices.rend())
it = std::find_if(m_choices.rbegin(), selected, match_filter);
2013-01-28 13:48:34 +01:00
select(it.base()-1);
}
else if (key == '/' and not m_edit_filter)
{
m_edit_filter = true;
}
else if (m_edit_filter)
{
m_filter_editor.handle_key(key);
auto search = ".*" + m_filter_editor.line() + ".*";
m_filter = boost::regex(search.begin(), search.end());
auto it = std::find_if(m_selected, m_choices.end(), match_filter);
if (it == m_choices.end())
it = std::find_if(m_choices.begin(), m_selected, match_filter);
2013-01-28 13:48:34 +01:00
select(it);
}
if (m_edit_filter)
{
auto display_line = m_filter_editor.build_display_line();
display_line.insert(display_line.begin(), { "filter:"_str, get_color("Prompt") });
context().print_status(display_line);
}
}
String description() const override
{
return "menu";
}
2013-10-25 01:01:17 +02:00
KeymapMode keymap_mode() const override { return KeymapMode::Menu; }
private:
MenuCallback m_callback;
using ChoiceList = std::vector<String>;
const ChoiceList m_choices;
ChoiceList::const_iterator m_selected;
2013-01-28 13:48:34 +01:00
void select(ChoiceList::const_iterator it)
{
m_selected = it;
int selected = m_selected - m_choices.begin();
2013-01-28 13:48:34 +01:00
context().ui().menu_select(selected);
m_callback(selected, MenuEvent::Select, context());
}
boost::regex m_filter = boost::regex(".*");
bool m_edit_filter = false;
LineEditor m_filter_editor;
};
2013-07-26 01:17:12 +02:00
String common_prefix(memoryview<String> strings)
{
String res;
if (strings.empty())
return res;
res = strings[0];
for (auto& str : strings)
{
ByteCount len = std::min(res.length(), str.length());
ByteCount common_len = 0;
while (common_len < len and str[common_len] == res[common_len])
++common_len;
if (common_len != res.length())
res = res.substr(0, common_len);
}
return res;
}
2012-10-17 13:14:03 +02:00
class Prompt : public InputMode
{
public:
2013-09-12 23:47:23 +02:00
Prompt(Client& client, const String& prompt,
ColorPair colors, Completer completer, PromptCallback callback)
2013-09-12 23:47:23 +02:00
: InputMode(client), m_prompt(prompt), m_prompt_colors(colors),
m_completer(completer), m_callback(callback)
{
m_history_it = ms_history[m_prompt].end();
display();
2012-09-03 19:20:41 +02:00
}
2013-07-26 01:44:25 +02:00
void on_key(Key key) override
{
std::vector<String>& history = ms_history[m_prompt];
const String& line = m_line_editor.line();
if (m_mode == Mode::InsertReg)
{
2013-01-28 13:48:34 +01:00
String reg = RegisterManager::instance()[key.key].values(context())[0];
m_line_editor.insert(reg);
m_mode = Mode::Default;
}
else if (key == Key{Key::Modifiers::Control, 'm'}) // enter
{
if (not line.empty())
{
std::vector<String>::iterator it;
while ((it = find(history, line)) != history.end())
history.erase(it);
history.push_back(line);
}
context().print_status(DisplayLine{});
2013-01-28 13:48:34 +01:00
context().ui().menu_hide();
2012-09-24 19:39:40 +02:00
reset_normal_mode();
// call callback after reset_normal_mode so that callback
// may change the mode
2013-01-28 13:48:34 +01:00
m_callback(line, PromptEvent::Validate, context());
return;
}
2012-11-08 14:05:00 +01:00
else if (key == Key::Escape or key == Key { Key::Modifiers::Control, 'c' })
{
context().print_status(DisplayLine{});
2013-01-28 13:48:34 +01:00
context().ui().menu_hide();
2012-09-24 19:39:40 +02:00
reset_normal_mode();
2013-01-28 13:48:34 +01:00
m_callback(line, PromptEvent::Abort, context());
return;
}
else if (key == Key{Key::Modifiers::Control, 'r'})
{
m_mode = Mode::InsertReg;
}
else if (key == Key::Up or
key == Key{Key::Modifiers::Control, 'p'})
{
if (m_history_it != history.begin())
{
if (m_history_it == history.end())
m_prefix = line;
auto it = m_history_it;
// search for the previous history entry matching typed prefix
do
{
--it;
if (prefix_match(*it, m_prefix))
{
m_history_it = it;
m_line_editor.reset(*it);
break;
}
} while (it != history.begin());
}
}
else if (key == Key::Down or // next
key == Key{Key::Modifiers::Control, 'n'})
{
if (m_history_it != history.end())
{
// search for the next history entry matching typed prefix
++m_history_it;
while (m_history_it != history.end() and
prefix_match(*m_history_it, m_prefix))
++m_history_it;
if (m_history_it != history.end())
m_line_editor.reset(*m_history_it);
else
m_line_editor.reset(m_prefix);
}
}
else if (key == Key(Key::Modifiers::Control, 'i') or // tab completion
key == Key::BackTab)
{
const bool reverse = (key == Key::BackTab);
CandidateList& candidates = m_completions.candidates;
// first try, we need to ask our completer for completions
if (candidates.empty())
{
m_completions = m_completer(context(), CompletionFlags::None, line,
line.byte_count_to(m_line_editor.cursor_pos()));
if (candidates.empty())
return;
2013-01-28 13:48:34 +01:00
context().ui().menu_hide();
DisplayCoord menu_pos{ context().ui().dimensions().line, 0_char };
2013-04-04 18:47:34 +02:00
context().ui().menu_show(candidates, menu_pos, get_color("MenuForeground"),
get_color("MenuBackground"), MenuStyle::Prompt);
2013-03-05 19:03:42 +01:00
bool use_common_prefix = context().options()["complete_prefix"].get<bool>();
String prefix = use_common_prefix ? common_prefix(candidates) : String();
if (m_completions.end - m_completions.start > prefix.length())
prefix = line.substr(m_completions.start,
m_completions.end - m_completions.start);
auto it = find(candidates, prefix);
if (it == candidates.end())
{
m_current_completion = use_common_prefix ? candidates.size() : 0;
candidates.push_back(std::move(prefix));
}
else
m_current_completion = use_common_prefix ? it - candidates.begin() : 0;
}
else if (not reverse and ++m_current_completion >= candidates.size())
m_current_completion = 0;
else if (reverse and --m_current_completion < 0)
m_current_completion = candidates.size()-1;
const String& completion = candidates[m_current_completion];
2013-01-28 13:48:34 +01:00
context().ui().menu_select(m_current_completion);
m_line_editor.insert_from(line.char_count_to(m_completions.start),
completion);
// when we have only one completion candidate, make next tab complete
// from the new content.
if (candidates.size() == 1)
candidates.clear();
}
else
{
m_line_editor.handle_key(key);
m_current_completion = -1;
context().ui().menu_hide();
if (context().options()["autoshowcompl"].get<bool>()) try
{
m_completions = m_completer(context(), CompletionFlags::Fast, line,
line.byte_count_to(m_line_editor.cursor_pos()));
CandidateList& candidates = m_completions.candidates;
if (not candidates.empty())
{
DisplayCoord menu_pos{ context().ui().dimensions().line, 0_char };
context().ui().menu_show(candidates, menu_pos, get_color("MenuForeground"),
get_color("MenuBackground"), MenuStyle::Prompt);
}
} catch (runtime_error&) {}
}
display();
2013-01-28 13:48:34 +01:00
m_callback(line, PromptEvent::Change, context());
}
void set_prompt_colors(ColorPair colors)
{
if (colors != m_prompt_colors)
{
m_prompt_colors = colors;
display();
}
}
String description() const override
{
return "prompt";
}
2013-10-25 01:01:17 +02:00
KeymapMode keymap_mode() const override { return KeymapMode::Prompt; }
private:
void display() const
{
auto display_line = m_line_editor.build_display_line();
display_line.insert(display_line.begin(), { m_prompt, m_prompt_colors });
context().print_status(display_line);
}
enum class Mode { Default, InsertReg };
PromptCallback m_callback;
Completer m_completer;
const String m_prompt;
ColorPair m_prompt_colors;
Completions m_completions;
int m_current_completion = -1;
String m_prefix;
LineEditor m_line_editor;
Mode m_mode = Mode::Default;
static std::unordered_map<String, std::vector<String>> ms_history;
std::vector<String>::iterator m_history_it;
};
std::unordered_map<String, std::vector<String>> Prompt::ms_history;
2012-10-17 13:14:03 +02:00
class NextKey : public InputMode
{
public:
2013-09-12 23:47:23 +02:00
NextKey(Client& client, KeyCallback callback)
: InputMode(client), m_callback(callback) {}
2013-07-26 01:44:25 +02:00
void on_key(Key key) override
{
2012-09-24 19:39:40 +02:00
reset_normal_mode();
2013-01-28 13:48:34 +01:00
m_callback(key, context());
}
String description() const override
{
return "enter key";
}
2013-10-25 01:01:17 +02:00
KeymapMode keymap_mode() const override { return KeymapMode::None; }
private:
KeyCallback m_callback;
};
2013-03-28 14:27:44 +01:00
struct BufferCompletion
{
BufferCoord begin;
BufferCoord end;
2013-03-28 14:27:44 +01:00
CandidateList candidates;
size_t timestamp;
2013-03-28 14:27:44 +01:00
bool is_valid() const { return not candidates.empty(); }
2013-03-28 14:27:44 +01:00
};
class BufferCompleter : public OptionManagerWatcher_AutoRegister
{
public:
BufferCompleter(const Context& context)
: OptionManagerWatcher_AutoRegister(context.options()), m_context(context)
{}
BufferCompleter(const BufferCompleter&) = delete;
BufferCompleter& operator=(const BufferCompleter&) = delete;
void select(int offset)
{
if (not setup_ifn())
return;
auto& buffer = m_context.buffer();
2013-03-28 14:27:44 +01:00
m_current_candidate = (m_current_candidate + offset) % (int)m_matching_candidates.size();
if (m_current_candidate < 0)
m_current_candidate += m_matching_candidates.size();
const String& candidate = m_matching_candidates[m_current_candidate];
const auto& cursor_pos = m_context.editor().main_selection().last();
const auto prefix_len = buffer.distance(m_completions.begin, cursor_pos);
2013-11-03 12:08:16 +01:00
const auto suffix_len = std::max(0_byte, buffer.distance(cursor_pos, m_completions.end));
const auto buffer_len = buffer.byte_count();
auto ref = buffer.string(m_completions.begin, m_completions.end);
for (auto& sel : m_context.editor().selections())
{
2013-05-29 18:39:22 +02:00
auto offset = buffer.offset(sel.last());
auto pos = buffer.iterator_at(sel.last());
if (offset >= prefix_len and offset + suffix_len < buffer_len and
std::equal(ref.begin(), ref.end(), pos - prefix_len))
{
pos = buffer.erase(pos - prefix_len, pos + suffix_len);
buffer.insert(pos, candidate);
}
}
m_completions.end = cursor_pos;
m_completions.begin = buffer.advance(m_completions.end, -candidate.length());
m_completions.timestamp = m_context.buffer().timestamp();
2013-03-28 14:27:44 +01:00
m_context.ui().menu_select(m_current_candidate);
// when we select a match, remove non displayed matches from the candidates
// which are considered as invalid with the new completion timestamp
m_completions.candidates.clear();
std::copy(m_matching_candidates.begin(), m_matching_candidates.end()-1,
std::back_inserter(m_completions.candidates));
}
void update()
{
2013-03-28 14:27:44 +01:00
if (m_completions.is_valid())
{
2013-03-28 14:27:44 +01:00
ByteCount longest_completion = 0;
for (auto& candidate : m_completions.candidates)
longest_completion = std::max(longest_completion, candidate.length());
BufferCoord cursor = m_context.editor().main_selection().last();
BufferCoord compl_beg = m_completions.begin;
if (cursor.line == compl_beg.line and
is_in_range(cursor.column - compl_beg.column,
ByteCount{0}, longest_completion-1))
{
String prefix = m_context.buffer().string(compl_beg, cursor);
if (m_context.buffer().timestamp() == m_completions.timestamp)
m_matching_candidates = m_completions.candidates;
else
{
m_matching_candidates.clear();
for (auto& candidate : m_completions.candidates)
{
if (candidate.substr(0, prefix.length()) == prefix)
m_matching_candidates.push_back(candidate);
}
}
2013-03-28 14:27:44 +01:00
if (not m_matching_candidates.empty())
{
m_context.ui().menu_hide();
2013-03-28 14:27:44 +01:00
m_current_candidate = m_matching_candidates.size();
m_completions.end = cursor;
menu_show();
2013-03-28 14:27:44 +01:00
m_matching_candidates.push_back(prefix);
return;
}
}
}
reset();
setup_ifn();
}
void reset()
{
2013-03-28 14:27:44 +01:00
m_completions = BufferCompletion{};
m_context.ui().menu_hide();
}
template<BufferCompletion (BufferCompleter::*complete_func)(const Buffer&, BufferCoord)>
bool try_complete()
{
auto& buffer = m_context.buffer();
BufferCoord cursor_pos = m_context.editor().main_selection().last();
m_completions = (this->*complete_func)(buffer, cursor_pos);
if (not m_completions.is_valid())
return false;
kak_assert(cursor_pos >= m_completions.begin);
m_matching_candidates = m_completions.candidates;
m_current_candidate = m_matching_candidates.size();
m_context.ui().menu_hide();
menu_show();
m_matching_candidates.push_back(buffer.string(m_completions.begin, m_completions.end));
return true;
}
using StringList = std::vector<String>;
template<bool other_buffers>
BufferCompletion complete_word(const Buffer& buffer, BufferCoord cursor_pos)
{
auto pos = buffer.iterator_at(cursor_pos);
if (pos == buffer.begin() or not is_word(*utf8::previous(pos)))
return {};
auto end = buffer.iterator_at(cursor_pos);
auto begin = end-1;
while (begin != buffer.begin() and is_word(*begin))
--begin;
if (not is_word(*begin))
++begin;
String ex = R"(\<\Q)" + String{begin, end} + R"(\E\w+\>)";
Regex re(ex.begin(), ex.end());
using RegexIt = boost::regex_iterator<BufferIterator>;
std::unordered_set<String> matches;
for (RegexIt it(buffer.begin(), buffer.end(), re), re_end; it != re_end; ++it)
{
auto& match = (*it)[0];
if (match.first <= pos and pos < match.second)
continue;
matches.insert(String{match.first, match.second});
}
if (other_buffers)
{
for (const auto& buf : BufferManager::instance())
{
if (buf.get() == &buffer)
continue;
for (RegexIt it(buf->begin(), buf->end(), re), re_end; it != re_end; ++it)
{
auto& match = (*it)[0];
matches.insert(String{match.first, match.second});
}
}
}
CandidateList result;
std::copy(make_move_iterator(matches.begin()),
make_move_iterator(matches.end()),
inserter(result, result.begin()));
std::sort(result.begin(), result.end());
return { begin.coord(), end.coord(), std::move(result), buffer.timestamp() };
}
BufferCompletion complete_filename(const Buffer& buffer, BufferCoord cursor_pos)
{
auto pos = buffer.iterator_at(cursor_pos);
auto begin = pos;
auto is_filename = [](char c)
{
return isalnum(c) or c == '/' or c == '.' or c == '_' or c == '-';
};
while (begin != buffer.begin() and is_filename(*(begin-1)))
--begin;
if (begin == pos)
return {};
String prefix{begin, pos};
StringList res;
if (prefix.front() == '/')
res = Kakoune::complete_filename(prefix, Regex{});
else
{
for (auto dir : options()["path"].get<StringList>())
{
if (not dir.empty() and dir.back() != '/')
dir += '/';
for (auto& filename : Kakoune::complete_filename(dir + prefix, Regex{}))
res.push_back(filename.substr(dir.length()));
}
}
if (res.empty())
return {};
return { begin.coord(), pos.coord(), std::move(res), buffer.timestamp() };
}
BufferCompletion complete_option(const Buffer& buffer, BufferCoord cursor_pos)
{
const StringList& opt = options()["completions"].get<StringList>();
if (opt.empty())
return {};
auto& desc = opt[0];
static const Regex re(R"((\d+)\.(\d+)(?:\+(\d+))?@(\d+))");
boost::smatch match;
if (boost::regex_match(desc.begin(), desc.end(), match, re))
{
BufferCoord coord{ str_to_int(match[1].str()) - 1, str_to_int(match[2].str()) - 1 };
if (not buffer.is_valid(coord))
return {};
auto end = coord;
if (match[3].matched)
{
ByteCount len = str_to_int(match[3].str());
end = buffer.advance(coord, len);
}
size_t timestamp = (size_t)str_to_int(match[4].str());
ByteCount longest_completion = 0;
for (auto it = opt.begin() + 1; it != opt.end(); ++it)
longest_completion = std::max(longest_completion, it->length());
if (timestamp == buffer.timestamp() and
2013-11-03 12:08:16 +01:00
cursor_pos.line == coord.line and cursor_pos.column >= coord.column and
buffer.distance(coord, cursor_pos) < longest_completion)
return { coord, end, { opt.begin() + 1, opt.end() }, timestamp };
}
return {};
}
2013-08-05 10:23:13 +02:00
BufferCompletion complete_line(const Buffer& buffer, BufferCoord cursor_pos)
{
String prefix = buffer[cursor_pos.line].substr(0_byte, cursor_pos.column);
StringList res;
for (LineCount l = 0_line; l < buffer.line_count(); ++l)
{
if (l == cursor_pos.line)
continue;
ByteCount len = buffer[l].length();
if (len > cursor_pos.column and std::equal(prefix.begin(), prefix.end(), buffer[l].begin()))
res.push_back(buffer[l].substr(0_byte, len-1));
}
if (res.empty())
return {};
std::sort(res.begin(), res.end());
res.erase(std::unique(res.begin(), res.end()), res.end());
2013-08-05 10:23:13 +02:00
return { cursor_pos.line, cursor_pos, std::move(res), buffer.timestamp() };
}
private:
void on_option_changed(const Option& opt) override
{
if (opt.name() == "completions")
{
reset();
setup_ifn();
}
}
void menu_show()
{
DisplayCoord menu_pos = m_context.window().display_position(m_completions.begin);
m_context.ui().menu_show(m_matching_candidates, menu_pos,
2013-04-04 18:47:34 +02:00
get_color("MenuForeground"),
get_color("MenuBackground"),
MenuStyle::Inline);
m_context.ui().menu_select(m_current_candidate);
}
bool setup_ifn()
{
2013-03-28 14:27:44 +01:00
if (not m_completions.is_valid())
{
auto& completers = options()["completers"].get<StringList>();
if (contains(completers, "option") and try_complete<&BufferCompleter::complete_option>())
return true;
if (contains(completers, "word=buffer") and try_complete<&BufferCompleter::complete_word<false>>())
return true;
if (contains(completers, "word=all") and try_complete<&BufferCompleter::complete_word<true>>())
return true;
if (contains(completers, "filename") and try_complete<&BufferCompleter::complete_filename>())
return true;
return false;
}
return true;
}
2013-03-28 14:27:44 +01:00
const Context& m_context;
BufferCompletion m_completions;
CandidateList m_matching_candidates;
int m_current_candidate = -1;
};
2012-10-17 13:14:03 +02:00
class Insert : public InputMode
2012-09-05 14:27:14 +02:00
{
public:
2013-09-12 23:47:23 +02:00
Insert(Client& client, InsertMode mode)
: InputMode(client),
m_insert_mode(mode),
m_edition(context().editor()),
m_completer(context()),
m_idle_timer{Clock::now() + idle_timeout,
2013-01-28 13:48:34 +01:00
[this](Timer& timer) {
context().hooks().run_hook("InsertIdle", "", context());
m_completer.update();
}}
2012-09-05 14:27:14 +02:00
{
last_insert().first = mode;
last_insert().second.clear();
2013-01-28 13:48:34 +01:00
context().hooks().run_hook("InsertBegin", "", context());
prepare(m_insert_mode);
2012-09-05 14:27:14 +02:00
}
2013-07-26 01:44:25 +02:00
void on_key(Key key) override
2012-09-05 14:27:14 +02:00
{
last_insert().second.push_back(key);
if (m_mode == Mode::InsertReg)
2012-09-05 14:27:14 +02:00
{
if (key.modifiers == Key::Modifiers::None)
insert(RegisterManager::instance()[key.key].values(context()));
m_mode = Mode::Default;
return;
}
if (m_mode == Mode::Complete)
{
if (key.key == 'f')
m_completer.try_complete<&BufferCompleter::complete_filename>();
if (key.key == 'w')
m_completer.try_complete<&BufferCompleter::complete_word<true>>();
if (key.key == 'o')
m_completer.try_complete<&BufferCompleter::complete_option>();
2013-08-05 10:23:13 +02:00
if (key.key == 'l')
m_completer.try_complete<&BufferCompleter::complete_line>();
m_mode = Mode::Default;
2012-09-05 14:27:14 +02:00
return;
}
2013-01-17 14:22:24 +01:00
bool update_completions = true;
bool moved = false;
if (key == Key::Escape or key == ctrl('c'))
2012-09-05 14:27:14 +02:00
{
2013-01-28 13:48:34 +01:00
context().hooks().run_hook("InsertEnd", "", context());
m_completer.reset();
2012-11-08 14:05:00 +01:00
reset_normal_mode();
}
else if (key == Key::Backspace)
erase();
2012-11-08 14:05:00 +01:00
else if (key == Key::Left)
2013-01-17 14:22:24 +01:00
{
m_edition.editor().move_selections(-1_char, SelectMode::Replace);
2013-01-17 14:22:24 +01:00
moved = true;
}
2012-11-08 14:05:00 +01:00
else if (key == Key::Right)
{
m_edition.editor().move_selections(1_char, SelectMode::Replace);
moved = true;
}
2012-11-08 14:05:00 +01:00
else if (key == Key::Up)
{
m_edition.editor().move_selections(-1_line, SelectMode::Replace);
moved = true;
}
2012-11-08 14:05:00 +01:00
else if (key == Key::Down)
{
m_edition.editor().move_selections(1_line, SelectMode::Replace);
moved = true;
}
2012-11-08 14:05:00 +01:00
else if (key.modifiers == Key::Modifiers::None)
insert(key.key);
else if (key == ctrl('r'))
m_mode = Mode::InsertReg;
else if ( key == ctrl('m'))
insert('\n');
else if ( key == ctrl('i'))
insert('\t');
else if ( key == ctrl('n'))
2012-11-08 14:05:00 +01:00
{
m_completer.select(1);
2013-01-17 14:22:24 +01:00
update_completions = false;
2012-11-08 14:05:00 +01:00
}
else if ( key == ctrl('p'))
2012-11-08 14:05:00 +01:00
{
m_completer.select(-1);
2013-01-17 14:22:24 +01:00
update_completions = false;
2012-11-08 14:05:00 +01:00
}
else if ( key == ctrl('x'))
m_mode = Mode::Complete;
else if ( key == ctrl('u'))
context().buffer().commit_undo_group();
2012-11-08 14:05:00 +01:00
2013-01-17 14:22:24 +01:00
if (update_completions)
m_idle_timer.set_next_date(Clock::now() + idle_timeout);
if (moved)
2013-01-30 19:04:03 +01:00
context().hooks().run_hook("InsertMove", key_to_str(key), context());
2012-09-05 14:27:14 +02:00
}
String description() const override
{
return "insert";
}
2013-10-25 01:01:17 +02:00
KeymapMode keymap_mode() const override { return KeymapMode::Insert; }
2012-09-05 14:27:14 +02:00
private:
void erase() const
{
auto& buffer = m_edition.editor().buffer();
for (auto& sel : m_edition.editor().selections())
{
if (sel.last() == BufferCoord{0,0})
continue;
auto pos = buffer.iterator_at(sel.last());
buffer.erase(utf8::previous(pos), pos);
}
}
void insert(memoryview<String> strings)
{
auto& buffer = m_edition.editor().buffer();
auto& selections = m_edition.editor().selections();
for (size_t i = 0; i < selections.size(); ++i)
{
size_t index = std::min(i, strings.size()-1);
buffer.insert(buffer.iterator_at(selections[i].last()),
strings[index]);
}
}
void insert(Codepoint key)
{
2013-10-30 10:02:45 +01:00
auto str = codepoint_to_str(key);
auto& buffer = m_edition.editor().buffer();
2013-10-30 10:02:45 +01:00
for (auto& sel : m_edition.editor().selections())
buffer.insert(buffer.iterator_at(sel.last()), str);
context().hooks().run_hook("InsertKey", str, context());
}
void prepare(InsertMode mode)
{
Editor& editor = m_edition.editor();
Buffer& buffer = editor.buffer();
for (auto& sel : editor.m_selections)
{
BufferCoord first, last;
switch (mode)
{
case InsertMode::Insert:
first = sel.max();
last = sel.min();
break;
case InsertMode::Replace:
first = last = Kakoune::erase(buffer, sel).coord();
break;
case InsertMode::Append:
first = sel.min();
last = sel.max();
// special case for end of lines, append to current line instead
if (last.column != buffer[last.line].length() - 1)
last = buffer.char_next(last);
break;
case InsertMode::OpenLineBelow:
case InsertMode::AppendAtLineEnd:
first = last = BufferCoord{sel.max().line, buffer[sel.max().line].length() - 1};
break;
case InsertMode::OpenLineAbove:
case InsertMode::InsertAtLineBegin:
first = sel.min().line;
if (mode == InsertMode::OpenLineAbove)
first = buffer.char_prev(first);
else
{
auto first_non_blank = buffer.iterator_at(first);
while (*first_non_blank == ' ' or *first_non_blank == '\t')
++first_non_blank;
if (*first_non_blank != '\n')
first = first_non_blank.coord();
}
last = first;
break;
case InsertMode::InsertAtNextLineBegin:
kak_assert(false); // not implemented
break;
}
if (buffer.is_end(first))
first = buffer.char_prev(first);
if (buffer.is_end(last))
last = buffer.char_prev(last);
sel.first() = first;
sel.last() = last;
}
if (mode == InsertMode::OpenLineBelow or mode == InsertMode::OpenLineAbove)
{
insert('\n');
if (mode == InsertMode::OpenLineAbove)
{
for (auto& sel : editor.m_selections)
{
// special case, the --first line above did nothing, so we need to compensate now
if (sel.first() == buffer.char_next({0,0}))
sel.first() = sel.last() = BufferCoord{0,0};
}
}
}
sort_and_merge_overlapping(editor.m_selections, editor.m_main_sel);
editor.check_invariant();
}
void on_replaced() override
{
for (auto& sel : m_edition.editor().m_selections)
{
if (m_insert_mode == InsertMode::Append and sel.last().column > 0)
sel.last() = m_edition.editor().buffer().char_prev(sel.last());
avoid_eol(m_edition.editor().buffer(), sel);
}
}
enum class Mode { Default, Complete, InsertReg };
Mode m_mode = Mode::Default;
InsertMode m_insert_mode;
scoped_edition m_edition;
BufferCompleter m_completer;
Timer m_idle_timer;
2012-09-05 14:27:14 +02:00
};
}
2013-10-26 12:49:16 +02:00
void InputMode::reset_normal_mode()
{
m_client.reset_normal_mode();
}
2013-09-12 23:47:23 +02:00
Client::Client(std::unique_ptr<UserInterface>&& ui, Editor& editor, String name)
: m_ui(std::move(ui)), m_context(*this, editor), m_mode(new InputModes::Normal(*this)), m_name(name)
2012-09-05 14:27:14 +02:00
{
}
2013-09-12 23:47:23 +02:00
Client::~Client()
{
}
void Client::change_input_mode(InputMode* new_mode)
2012-09-05 14:27:14 +02:00
{
m_mode->on_replaced();
m_mode_trash.emplace_back(std::move(m_mode));
m_mode.reset(new_mode);
}
void Client::insert(InsertMode mode)
{
change_input_mode(new InputModes::Insert(*this, mode));
2012-09-05 14:27:14 +02:00
}
2013-09-12 23:47:23 +02:00
void Client::repeat_last_insert()
{
if (m_last_insert.second.empty())
return;
2012-09-05 14:27:14 +02:00
std::vector<Key> keys;
swap(keys, m_last_insert.second);
// context.last_insert will be refilled by the new Insert
2012-09-05 14:27:14 +02:00
// this is very inefficient.
change_input_mode(new InputModes::Insert(*this, m_last_insert.first));
2012-09-05 14:27:14 +02:00
for (auto& key : keys)
2013-01-28 13:48:34 +01:00
m_mode->on_key(key);
kak_assert(dynamic_cast<InputModes::Normal*>(m_mode.get()) != nullptr);
}
2013-09-12 23:47:23 +02:00
void Client::prompt(const String& prompt, ColorPair prompt_colors,
Completer completer, PromptCallback callback)
{
change_input_mode(new InputModes::Prompt(*this, prompt, prompt_colors,
completer, callback));
}
2013-09-12 23:47:23 +02:00
void Client::set_prompt_colors(ColorPair prompt_colors)
{
InputModes::Prompt* prompt = dynamic_cast<InputModes::Prompt*>(m_mode.get());
if (prompt)
prompt->set_prompt_colors(prompt_colors);
}
2013-09-12 23:47:23 +02:00
void Client::menu(memoryview<String> choices,
MenuCallback callback)
{
change_input_mode(new InputModes::Menu(*this, choices, callback));
}
2013-09-12 23:47:23 +02:00
void Client::on_next_key(KeyCallback callback)
{
change_input_mode(new InputModes::NextKey(*this, callback));
}
2013-10-25 01:01:17 +02:00
static bool is_valid(Key key)
{
return key != Key::Invalid and key.key <= 0x10FFFF;
}
void Client::handle_available_input()
{
while (m_ui->is_key_available())
{
handle_key(m_ui->get_key());
m_mode_trash.clear();
}
m_context.window().forget_timestamp();
}
2013-09-12 23:47:23 +02:00
void Client::handle_key(Key key)
{
if (is_valid(key))
{
const bool was_recording = is_recording();
2013-02-18 18:58:07 +01:00
2013-10-25 01:01:17 +02:00
auto keymap_mode = m_mode->keymap_mode();
KeymapManager& keymaps = m_context.keymaps();
if (keymaps.is_mapped(key, keymap_mode))
{
for (auto& k : keymaps.get_mapping(key, keymap_mode))
m_mode->on_key(k);
}
else
m_mode->on_key(key);
2013-02-18 18:58:07 +01:00
// do not record the key that made us enter or leave recording mode.
if (was_recording and is_recording())
m_recorded_keys += key_to_str(key);
}
}
2013-09-12 23:47:23 +02:00
void Client::start_recording(char reg)
2013-02-18 18:58:07 +01:00
{
kak_assert(m_recording_reg == 0);
m_recorded_keys = "";
2013-02-18 18:58:07 +01:00
m_recording_reg = reg;
}
2013-09-12 23:47:23 +02:00
bool Client::is_recording() const
2013-02-18 18:58:07 +01:00
{
return m_recording_reg != 0;
}
2013-09-12 23:47:23 +02:00
void Client::stop_recording()
2013-02-18 18:58:07 +01:00
{
kak_assert(m_recording_reg != 0);
2013-02-18 18:58:07 +01:00
RegisterManager::instance()[m_recording_reg] = memoryview<String>(m_recorded_keys);
m_recording_reg = 0;
}
void Client::print_status(DisplayLine status_line)
{
m_status_line = std::move(status_line);
m_context.window().forget_timestamp();
}
DisplayLine Client::generate_mode_line() const
{
auto pos = context().editor().main_selection().last();
auto col = context().buffer()[pos.line].char_count_to(pos.column);
std::ostringstream oss;
oss << context().buffer().display_name()
<< " " << (int)pos.line+1 << ":" << (int)col+1;
if (context().buffer().is_modified())
oss << " [+]";
if (is_recording())
oss << " [recording (" << m_recording_reg << ")]";
if (context().buffer().flags() & Buffer::Flags::New)
oss << " [new file]";
oss << " [" << m_mode->description() << "]" << " - " << name()
<< "@[" << Server::instance().session() << "]";
return { oss.str(), get_color("StatusLine") };
}
void Client::redraw_ifn()
{
if (m_context.window().timestamp() != m_context.buffer().timestamp())
{
DisplayCoord dimensions = m_context.ui().dimensions();
if (dimensions == DisplayCoord{0,0})
return;
m_context.window().set_dimensions(dimensions);
m_context.window().update_display_buffer();;
m_context.ui().draw(m_context.window().display_buffer(),
m_status_line, generate_mode_line());
}
}
void Client::reset_normal_mode()
{
change_input_mode(new InputModes::Normal(*this));
}
static void reload_buffer(Context& context, const String& filename)
{
DisplayCoord view_pos = context.window().position();
BufferCoord cursor_pos = context.editor().main_selection().last();
Buffer* buf = create_buffer_from_file(filename);
if (not buf)
return;
Window& win = ClientManager::instance().get_unused_window_for_buffer(*buf);
win.select(cursor_pos);
win.set_position(view_pos);
context.change_editor(win);
context.print_status({ "'" + buf->display_name() + "' reloaded",
get_color("Information") });
}
void Client::check_buffer_fs_timestamp()
{
Buffer& buffer = m_context.buffer();
auto reload = context().options()["autoreload"].get<YesNoAsk>();
if (not (buffer.flags() & Buffer::Flags::File) or reload == No)
return;
const String& filename = buffer.name();
time_t ts = get_fs_timestamp(filename);
if (ts == buffer.fs_timestamp())
return;
if (reload == Ask)
{
print_status({"'" + buffer.display_name() + "' was modified externally, press r or y to reload, k or n to keep", get_color("Prompt")});
on_next_key([this, ts, filename](Key key, Context& context) {
Buffer* buf = BufferManager::instance().get_buffer_ifp(filename);
// buffer got deleted while waiting for the key, do nothing
if (not buf)
{
print_status({});
return;
}
if (key == 'r' or key == 'y')
reload_buffer(context, filename);
if (key == 'k' or key == 'n')
{
buf->set_fs_timestamp(ts);
print_status({"'" + buf->display_name() + "' kept", get_color("Information") });
}
else
check_buffer_fs_timestamp();
});
}
else
reload_buffer(context(), filename);
}
}