diff options
author | nicm <nicm> | 2017-01-24 19:53:37 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-24 19:53:37 +0000 |
commit | 85338bb75fa4fbabfdbefeb995bdea04efaf2db4 (patch) | |
tree | b5780e6de5d37e5243684dc94fcf4394e81e6683 /tmux.h | |
parent | 61fce272ea60f5096711ee554c56aef9cca8c654 (diff) | |
download | rtmux-85338bb75fa4fbabfdbefeb995bdea04efaf2db4.tar.gz rtmux-85338bb75fa4fbabfdbefeb995bdea04efaf2db4.tar.bz2 rtmux-85338bb75fa4fbabfdbefeb995bdea04efaf2db4.zip |
Add support for custom command aliases, this is an array option which
contains items of the form "alias=command". This is consulted when an
unknown command is parsed.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1828,6 +1828,7 @@ void printflike(2, 3) cmdq_print(struct cmdq_item *, const char *, ...); void printflike(2, 3) cmdq_error(struct cmdq_item *, const char *, ...); /* cmd-string.c */ +int cmd_string_split(const char *, int *, char ***); struct cmd_list *cmd_string_parse(const char *, const char *, u_int, char **); /* cmd-wait-for.c */ |