Support -c like sh(1) to execute a command, useful when tmux is a login

shell. Suggested by halex@.

This includes another protocol version increase (the last for now) so again
restart the tmux server before upgrading.
This commit is contained in:
Nicholas Marriott
2009-09-23 12:03:30 +00:00
parent 18ea820cb0
commit 9200a0be7a
6 changed files with 112 additions and 18 deletions

10
tmux.h
View File

@ -19,7 +19,7 @@
#ifndef TMUX_H
#define TMUX_H
#define PROTOCOL_VERSION 4
#define PROTOCOL_VERSION 5
#include <sys/param.h>
#include <sys/time.h>
@ -130,6 +130,7 @@ enum key_code {
/* Function keys. */
KEYC_F1,
KEYC_F2,
KEYC_F3,
KEYC_F4,
@ -308,7 +309,8 @@ enum msgtype {
MSG_WAKEUP,
MSG_ENVIRON,
MSG_UNLOCK,
MSG_LOCK
MSG_LOCK,
MSG_SHELL
};
/*
@ -348,6 +350,10 @@ struct msg_environ_data {
char var[ENVIRON_LENGTH];
};
struct msg_shell_data {
char shell[MAXPATHLEN];
};
/* Mode key commands. */
enum mode_key_cmd {
MODEKEY_NONE,