From dde16b00a91af805cd382dbccce115569ab9b1f0 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 4 Apr 2015 13:10:39 +0100 Subject: Add onkey command for executing commands after reading a key This completes the various user interaction primitives, on_next_key was the last not to be available through a command. --- src/commands.cc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src') diff --git a/src/commands.cc b/src/commands.cc index e1cfcb10..682e191b 100644 --- a/src/commands.cc +++ b/src/commands.cc @@ -1300,6 +1300,26 @@ const CommandDesc menu_cmd = { } }; +const CommandDesc onkey_cmd = { + "onkey", + nullptr, + "onkey : wait for next user key, store it in and execute ", + ParameterDesc{ {}, ParameterDesc::Flags::None, 2, 2 }, + CommandFlags::None, + CommandHelper{}, + CommandCompleter{}, + [](const ParametersParser& parser, Context& context) + { + String reg = parser[0]; + String command = parser[1]; + context.input_handler().on_next_key(KeymapMode::None, + [=](Key key, Context& context) { + RegisterManager::instance()[reg] = key_to_str(key); + CommandManager::instance().execute(command, context); + }); + } +}; + const CommandDesc info_cmd = { "info", nullptr, @@ -1517,6 +1537,7 @@ void register_commands() register_command(eval_string_cmd); register_command(prompt_cmd); register_command(menu_cmd); + register_command(onkey_cmd); register_command(info_cmd); register_command(try_catch_cmd); register_command(face_cmd); -- cgit v1.2.3