diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-23 22:24:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-23 22:24:16 +0000 |
commit | 59da4dce674ad2b082b9300aaee9edf3091574da (patch) | |
tree | ef0e12df7407496d60f291dae85e7bb54ec475b9 /tmux.h | |
parent | b69f4a3312a375fb9b19733e8f347f0f9a36d431 (diff) | |
download | rtmux-59da4dce674ad2b082b9300aaee9edf3091574da.tar.gz rtmux-59da4dce674ad2b082b9300aaee9edf3091574da.tar.bz2 rtmux-59da4dce674ad2b082b9300aaee9edf3091574da.zip |
list-commands command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.166 2008-06-23 22:12:29 nicm Exp $ */ +/* $Id: tmux.h,v 1.167 2008-06-23 22:24:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -929,6 +929,7 @@ struct client *cmd_find_client(struct cmd_ctx *, const char *); struct session *cmd_find_session(struct cmd_ctx *, const char *); struct winlink *cmd_find_window( struct cmd_ctx *, const char *, struct session **); +extern const struct cmd_entry *cmd_table[]; extern const struct cmd_entry cmd_attach_session_entry; extern const struct cmd_entry cmd_bind_key_entry; extern const struct cmd_entry cmd_command_prompt_entry; @@ -943,6 +944,7 @@ extern const struct cmd_entry cmd_last_window_entry; extern const struct cmd_entry cmd_link_window_entry; extern const struct cmd_entry cmd_list_buffers_entry; extern const struct cmd_entry cmd_list_clients_entry; +extern const struct cmd_entry cmd_list_commands_entry; extern const struct cmd_entry cmd_list_keys_entry; extern const struct cmd_entry cmd_list_sessions_entry; extern const struct cmd_entry cmd_list_windows_entry; |