diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-21 14:11:39 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-21 14:11:39 +0000 |
commit | e70e9513a82a817edf35c86cb8b7f5ff2736c771 (patch) | |
tree | b49787558eeefccf049972406233d5ed02155d00 /tmux.h | |
parent | 456ff329c37e4c9acf815d74353638e4829e868e (diff) | |
download | rtmux-e70e9513a82a817edf35c86cb8b7f5ff2736c771.tar.gz rtmux-e70e9513a82a817edf35c86cb8b7f5ff2736c771.tar.bz2 rtmux-e70e9513a82a817edf35c86cb8b7f5ff2736c771.zip |
Simple tab completion of option names in command prompt.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.160 2008-06-21 10:19:36 nicm Exp $ */ +/* $Id: tmux.h,v 1.161 2008-06-21 14:11:39 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -881,6 +881,7 @@ struct session *arg_parse_session(const char *); int arg_parse_window(const char *, struct session **, int *); /* cmd.c */ +char *cmd_complete(const char *); struct cmd *cmd_parse(int, char **, char **); void cmd_exec(struct cmd *, struct cmd_ctx *); void cmd_send(struct cmd *, struct buffer *); |