summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-09-23 13:45:18 +0100
committerMaxime Coste <frrrwww@gmail.com>2014-09-23 13:45:18 +0100
commit4c4d3cdd382438283a4774ef5d4cffb1d39181cf (patch)
treee5c5ab8943d8f0296a0880756aa8cc2bd6915675
parent858132e7719cba2fcca4e3058ec37d86cdce132e (diff)
Add support for mapping keys in goto/view commands
-rw-r--r--src/client.cc3
-rw-r--r--src/commands.cc4
-rw-r--r--src/input_handler.cc11
-rw-r--r--src/input_handler.hh3
-rw-r--r--src/keymap_manager.hh4
-rw-r--r--src/normal.cc26
6 files changed, 33 insertions, 18 deletions
diff --git a/src/client.cc b/src/client.cc
index aad37a36..92cadaec 100644
--- a/src/client.cc
+++ b/src/client.cc
@@ -146,7 +146,8 @@ void Client::check_buffer_fs_timestamp()
"press r or y to reload, k or n to keep",
pos, get_face("Information"), MenuStyle::Prompt);
- m_input_handler.on_next_key([this, filename, ts](Key key, Context& context) {
+ m_input_handler.on_next_key(KeymapMode::None,
+ [this, filename, ts](Key key, Context& context) {
Buffer* buf = BufferManager::instance().get_buffer_ifp(filename);
m_ui->info_hide();
// buffer got deleted while waiting for the key, do nothing
diff --git a/src/commands.cc b/src/commands.cc
index 917e44a9..591f4622 100644
--- a/src/commands.cc
+++ b/src/commands.cc
@@ -928,13 +928,15 @@ KeymapMode parse_keymap_mode(const String& str)
if (prefix_match("insert", str)) return KeymapMode::Insert;
if (prefix_match("menu", str)) return KeymapMode::Menu;
if (prefix_match("prompt", str)) return KeymapMode::Prompt;
+ if (prefix_match("goto", str)) return KeymapMode::Goto;
+ if (prefix_match("view", str)) return KeymapMode::View;
throw runtime_error("unknown keymap mode '" + str + "'");
}
CandidateList complete_mode(StringView prefix)
{
CandidateList res;
- for (auto mode : { "normal", "insert", "menu", "prompt" })
+ for (auto mode : { "normal", "insert", "menu", "prompt", "goto", "view" })
{
if (prefix_match(mode, prefix))
res.emplace_back(mode);
diff --git a/src/input_handler.cc b/src/input_handler.cc
index b0aff794..d8c1e373 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -730,8 +730,8 @@ std::unordered_map<String, std::vector<String>> Prompt::ms_history;
class NextKey : public InputMode
{
public:
- NextKey(InputHandler& input_handler, KeyCallback callback)
- : InputMode(input_handler), m_callback(callback) {}
+ NextKey(InputHandler& input_handler, KeymapMode keymap_mode, KeyCallback callback)
+ : InputMode(input_handler), m_keymap_mode(keymap_mode), m_callback(callback) {}
void on_key(Key key) override
{
@@ -744,10 +744,11 @@ public:
return { "enter key", Face(Colors::Yellow) };
}
- KeymapMode keymap_mode() const override { return KeymapMode::None; }
+ KeymapMode keymap_mode() const override { return m_keymap_mode; }
private:
KeyCallback m_callback;
+ KeymapMode m_keymap_mode;
};
class Insert : public InputMode
@@ -1078,9 +1079,9 @@ void InputHandler::menu(memoryview<String> choices,
change_input_mode(new InputModes::Menu(*this, choices, callback));
}
-void InputHandler::on_next_key(KeyCallback callback)
+void InputHandler::on_next_key(KeymapMode keymap_mode, KeyCallback callback)
{
- change_input_mode(new InputModes::NextKey(*this, callback));
+ change_input_mode(new InputModes::NextKey(*this, keymap_mode, callback));
}
static bool is_valid(Key key)
diff --git a/src/input_handler.hh b/src/input_handler.hh
index 5515de2a..7911f3c6 100644
--- a/src/input_handler.hh
+++ b/src/input_handler.hh
@@ -33,6 +33,7 @@ using KeyCallback = std::function<void (Key, Context&)>;
class InputMode;
class DisplayLine;
enum class InsertMode : unsigned;
+enum class KeymapMode : int;
class InputHandler : public SafeCountable
{
@@ -62,7 +63,7 @@ public:
// execute callback on next keypress and returns to normal mode
// if callback does not change the mode itself
- void on_next_key(KeyCallback callback);
+ void on_next_key(KeymapMode mode, KeyCallback callback);
// process the given key
void handle_key(Key key);
diff --git a/src/keymap_manager.hh b/src/keymap_manager.hh
index 7ccdba61..489ad301 100644
--- a/src/keymap_manager.hh
+++ b/src/keymap_manager.hh
@@ -15,7 +15,9 @@ enum class KeymapMode : int
Normal,
Insert,
Prompt,
- Menu
+ Menu,
+ Goto,
+ View,
};
class KeymapManager
diff --git a/src/normal.cc b/src/normal.cc
index 92c5e6b3..0c749e23 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -119,11 +119,12 @@ bool show_auto_info_ifn(const String& title, const String& info,
}
template<typename Cmd>
-void on_next_key_with_autoinfo(const Context& context, Cmd cmd,
+void on_next_key_with_autoinfo(const Context& context, KeymapMode keymap_mode, Cmd cmd,
const String& title, const String& info)
{
const bool hide = show_auto_info_ifn(title, info, context);
- context.input_handler().on_next_key([hide,cmd](Key key, Context& context) mutable {
+ context.input_handler().on_next_key(
+ keymap_mode, [hide,cmd](Key key, Context& context) mutable {
if (hide)
context.ui().info_hide();
cmd(key, context);
@@ -142,7 +143,8 @@ void goto_commands(Context& context, int line)
}
else
{
- on_next_key_with_autoinfo(context, [](Key key, Context& context) {
+ on_next_key_with_autoinfo(context, KeymapMode::Goto,
+ [](Key key, Context& context) {
if (key.modifiers != Key::Modifiers::None)
return;
auto& buffer = context.buffer();
@@ -260,7 +262,8 @@ void goto_commands(Context& context, int line)
void view_commands(Context& context, int param)
{
- on_next_key_with_autoinfo(context, [param](Key key, Context& context) {
+ on_next_key_with_autoinfo(context, KeymapMode::View,
+ [param](Key key, Context& context) {
if (key.modifiers != Key::Modifiers::None or not context.has_window())
return;
@@ -303,7 +306,8 @@ void view_commands(Context& context, int param)
void replace_with_char(Context& context, int)
{
- on_next_key_with_autoinfo(context, [](Key key, Context& context) {
+ on_next_key_with_autoinfo(context, KeymapMode::None,
+ [](Key key, Context& context) {
if (not iswprint(key.key))
return;
ScopedEdition edition(context);
@@ -829,7 +833,8 @@ template<ObjectFlags flags, SelectMode mode = SelectMode::Replace>
void select_object(Context& context, int param)
{
int level = param <= 0 ? 0 : param - 1;
- on_next_key_with_autoinfo(context, [level](Key key, Context& context) {
+ on_next_key_with_autoinfo(context, KeymapMode::None,
+ [level](Key key, Context& context) {
if (key.modifiers != Key::Modifiers::None)
return;
const Codepoint c = key.key;
@@ -957,7 +962,8 @@ constexpr bool operator&(SelectFlags lhs, SelectFlags rhs)
template<SelectFlags flags>
void select_to_next_char(Context& context, int param)
{
- on_next_key_with_autoinfo(context, [param](Key key, Context& context) {
+ on_next_key_with_autoinfo(context, KeymapMode::None,
+ [param](Key key, Context& context) {
select<flags & SelectFlags::Extend ? SelectMode::Extend : SelectMode::Replace>(
context,
std::bind(flags & SelectFlags::Reverse ? select_to_reverse : select_to,
@@ -970,7 +976,8 @@ void start_or_end_macro_recording(Context& context, int)
if (context.input_handler().is_recording())
context.input_handler().stop_recording();
else
- on_next_key_with_autoinfo(context, [](Key key, Context& context) {
+ on_next_key_with_autoinfo(context, KeymapMode::None,
+ [](Key key, Context& context) {
if (key.modifiers == Key::Modifiers::None and isalpha(key.key))
context.input_handler().start_recording(tolower(key.key));
}, "record macro", "enter macro name ");
@@ -984,7 +991,8 @@ void end_macro_recording(Context& context, int)
void replay_macro(Context& context, int count)
{
- on_next_key_with_autoinfo(context, [count](Key key, Context& context) mutable {
+ on_next_key_with_autoinfo(context, KeymapMode::None,
+ [count](Key key, Context& context) mutable {
if (key.modifiers == Key::Modifiers::None and isalpha(key.key))
{
static std::unordered_set<char> running_macros;