diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-12 13:03:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-12 13:03:58 +0000 |
commit | f3404ee9229ae3acab973b93ca7a20eddd593c7f (patch) | |
tree | 6da5c97c1301c44438c1f00b7a594f9d781fd66f /tmux.h | |
parent | e5b70015246c634a53747a149e5e7f8cc04a9f85 (diff) | |
download | rtmux-f3404ee9229ae3acab973b93ca7a20eddd593c7f.tar.gz rtmux-f3404ee9229ae3acab973b93ca7a20eddd593c7f.tar.bz2 rtmux-f3404ee9229ae3acab973b93ca7a20eddd593c7f.zip |
send-prefix command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.55 2007-10-12 12:08:51 nicm Exp $ */ +/* $Id: tmux.h,v 1.56 2007-10-12 13:03:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -525,9 +525,10 @@ extern const struct cmd_entry cmd_next_window_entry; extern const struct cmd_entry cmd_previous_window_entry; extern const struct cmd_entry cmd_rename_window_entry; extern const struct cmd_entry cmd_select_window_entry; -void cmd_select_window_default(void **, int); +extern const struct cmd_entry cmd_send_prefix_entry; extern const struct cmd_entry cmd_set_option_entry; extern const struct cmd_entry cmd_unbind_key_entry; +void cmd_select_window_default(void **, int); /* client.c */ int client_init(char *, struct client_ctx *, int); |