summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFrank LENORMAND <lenormf@gmail.com>2017-11-03 11:09:45 +0300
committerFrank LENORMAND <lenormf@gmail.com>2017-11-03 11:09:45 +0300
commit9127ed0d552b3f96e664b5876da1849b084e8889 (patch)
tree0472eb21a365abc2f02dedff121bcd286f0762b3 /src
parentc9b280b7124752678873eeaa10cb793901450432 (diff)
src rc: Rename `exec`/`eval` into `execute-keys`/`evaluate-commands`
Diffstat (limited to 'src')
-rw-r--r--src/commands.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands.cc b/src/commands.cc
index e0da8d58..761fc665 100644
--- a/src/commands.cc
+++ b/src/commands.cc
@@ -1669,9 +1669,9 @@ void context_wrap(const ParametersParser& parser, Context& context, Func func)
}
const CommandDesc exec_string_cmd = {
+ "execute-keys",
"exec",
- nullptr,
- "exec <switches> <keys>: execute given keys as if entered by user",
+ "execute-keys <switches> <keys>: execute given keys as if entered by user",
context_wrap_params,
CommandFlags::None,
CommandHelper{},
@@ -1694,9 +1694,9 @@ const CommandDesc exec_string_cmd = {
};
const CommandDesc eval_string_cmd = {
+ "evaluate-commands",
"eval",
- nullptr,
- "eval <switches> <commands>...: execute commands as if entered by user",
+ "evaluate-commands <switches> <commands>...: execute commands as if entered by user",
context_wrap_params,
CommandFlags::None,
CommandHelper{},