History log of /openbsd-src/usr.bin/tmux/cmd-source-file.c (Results 51 – 56 of 56)
Revision Date Author Comments
# 0e9de5d4 13-Nov-2009 nicm <nicm@openbsd.org>

Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the
command entry structs and a couple of functions to check/set the flags.


# dcab6980 21-Sep-2009 nicm <nicm@openbsd.org>

Use KEYC_NONE constant instead of 0 on init.


# c0a52a07 23-Aug-2009 nicm <nicm@openbsd.org>

When using source-file, run the commands in the context of the source-file
command rather than with no context. This makes things like attach work from a
file.


# 454be688 26-Jul-2009 nicm <nicm@openbsd.org>

Make all messages sent between the client and server fixed size.

This is the first of two changes to make the protocol more resilient and less
sensitive to other changes in the code, particularly wi

Make all messages sent between the client and server fixed size.

This is the first of two changes to make the protocol more resilient and less
sensitive to other changes in the code, particularly with commands. The client
now packs argv into a buffer and sends it to the server for parsing, rather
than doing it itself and sending the parsed command data.

As a side-effect this also removes a lot of now-unused command marshalling
code.

Mixing a server without this change and a client with or vice versa will cause
tmux to hang or crash, please ensure that tmux is entirely killed before
upgrading.

show more ...


# 0b2ec5a7 13-Jul-2009 nicm <nicm@openbsd.org>

Having fixed flags for single-character getopt options is a bit hard to
maintain and is only going to get worse as more are used. So instead, add a new
uint64_t member to cmd_entry which is a bitmask

Having fixed flags for single-character getopt options is a bit hard to
maintain and is only going to get worse as more are used. So instead, add a new
uint64_t member to cmd_entry which is a bitmask of upper and lowercase options
accepted by the command.

This means new single character options can be used without the need to add it
explicitly to the list.

show more ...


# 311827fb 01-Jun-2009 nicm <nicm@openbsd.org>

Import tmux, a terminal multiplexor allowing (among other things) a single
terminal to be switched between several different windows and programs
displayed on one terminal be detached from one termin

Import tmux, a terminal multiplexor allowing (among other things) a single
terminal to be switched between several different windows and programs
displayed on one terminal be detached from one terminal and moved to another.

ok deraadt pirofti

show more ...


123