diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-11 23:14:57 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-11 23:14:57 +0000 |
commit | d78bc5dfc40fe8d1a3842bd91dcfa5ca4c44ae01 (patch) | |
tree | e536614c32b449c1b5b2fd98d60c784633f92a83 /tmux.h | |
parent | 30746a4e92469e8223e3646dea572190357b2db4 (diff) | |
download | rtmux-d78bc5dfc40fe8d1a3842bd91dcfa5ca4c44ae01.tar.gz rtmux-d78bc5dfc40fe8d1a3842bd91dcfa5ca4c44ae01.tar.bz2 rtmux-d78bc5dfc40fe8d1a3842bd91dcfa5ca4c44ae01.zip |
save-buffer command, from Tiago Cunha.
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.221 2009-01-11 00:48:42 nicm Exp $ */ +/* $Id: tmux.h,v 1.222 2009-01-11 23:14:57 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -807,6 +807,7 @@ struct cmd_entry { #define CMD_ZEROONEARG 0x20 #define CMD_GFLAG 0x40 #define CMD_UFLAG 0x80 +#define CMD_AFLAG 0x100 int flags; void (*init)(struct cmd *, int); @@ -1086,6 +1087,7 @@ extern const struct cmd_entry cmd_refresh_client_entry; extern const struct cmd_entry cmd_rename_session_entry; extern const struct cmd_entry cmd_rename_window_entry; extern const struct cmd_entry cmd_respawn_window_entry; +extern const struct cmd_entry cmd_save_buffer_entry; extern const struct cmd_entry cmd_scroll_mode_entry; extern const struct cmd_entry cmd_select_prompt_entry; extern const struct cmd_entry cmd_select_window_entry; |