Age | Commit message (Expand) | Author |
2009-11-13 | imsg_read returns ssize_t not int, pointed out by lint via deraadt. | Nicholas Marriott |
2009-11-10 | Don't return 1 unless there was actually a problem (signal/lost server) rather | Nicholas Marriott |
2009-11-04 | Move some common code into a function. | Nicholas Marriott |
2009-11-04 | Initial changes to move tmux to libevent. | Nicholas Marriott |
2009-11-02 | Leftover unused variable :-/. | Nicholas Marriott |
2009-11-02 | There isn't much point in doing lstat before connect so instead just do connect | Nicholas Marriott |
2009-10-26 | Clear signal flags /before/ taking action and continue afterwards to reduce | Nicholas Marriott |
2009-10-21 | Tidy identify message send into a separate function. | Nicholas Marriott |
2009-10-21 | Client tidying: get rid of client_ctx struct in favour of two variables in | Nicholas Marriott |
2009-10-13 | Do this in a better way - print messages when exiting with nonzero. | Nicholas Marriott |
2009-10-13 | Don't print exit messages when used as a login shell, requested by martynas@ a | Nicholas Marriott |
2009-09-23 | Support -c like sh(1) to execute a command, useful when tmux is a login | Nicholas Marriott |
2009-09-23 | Remove the internal tmux locking and instead detach each client and run the | Nicholas Marriott |
2009-09-23 | Trim some code by moving the ioctl(TIOCGWINSZ) after SIGWINCH from the client | Nicholas Marriott |
2009-09-23 | Don't attempt to open() the tty path, rely on the client sending its stdin fd | Nicholas Marriott |
2009-09-20 | Regularise some fatal messages. | Nicholas Marriott |
2009-09-02 | Fix a race condition when asking a client to take over the terminal (switching | Nicholas Marriott |
2009-09-02 | That was the wrong fix. MSG_ERROR should set the error and the client should | Nicholas Marriott |
2009-09-02 | Set exittype for error exit as well as the error string. | Nicholas Marriott |
2009-08-12 | imsg closes the fd after sending, so dup() STDIN_FILENO before passing it to | Nicholas Marriott |
2009-08-11 | Have the client pass its stdin fd to the server when identifying itself and | Nicholas Marriott |
2009-08-11 | Switch tmux to use imsg. This is the last major change to make the | Nicholas Marriott |
2009-08-08 | Infrastructure and commands to manage the environment for processes started | Nicholas Marriott |
2009-08-08 | Tidy function a little by using a temporary variable. | Nicholas Marriott |
2009-07-30 | There aren't many client message types or code to handle them so get rid of the | Nicholas Marriott |
2009-07-30 | Tell the server when the client gets SIGTERM so it can clean up the terminal | Nicholas Marriott |
2009-07-26 | Make all messages sent between the client and server fixed size. | Nicholas Marriott |
2009-07-23 | None of the server message functions return anything but 0, so make them all | Nicholas Marriott |
2009-07-23 | Tidy client message return slightly: convert flags into an enum, and merge | Nicholas Marriott |
2009-07-22 | Pass a set of flags into client_init rather than just a start_server | Nicholas Marriott |
2009-06-25 | Remove some dead assignments, found by sthen with clang. | Nicholas Marriott |
2009-06-05 | Call setproctitle earlier in the client, and include the socket name. Makes it | Nicholas Marriott |
2009-06-01 | Import tmux, a terminal multiplexor allowing (among other things) a single | Nicholas Marriott |