Age | Commit message (Expand) | Author |
2024-08-26 | Client flags was changed to uint64_t a while ago, fix a few cases where | Nicholas Marriott |
2024-05-15 | Use default-shell for command prompt #() and popups as well | Nicholas Marriott |
2023-07-10 | It should no longer be necessary to ignore SIGCHLD because it is now | Nicholas Marriott |
2023-07-10 | Loop around waitpid in client, from Azat Khuzhin. | Nicholas Marriott |
2023-01-06 | If a pane is killed, cancel reading from the file. GitHub issue 3422. | Nicholas Marriott |
2022-05-30 | Add an ACL list for users connecting to the tmux socket. Users may be | Nicholas Marriott |
2022-02-28 | Exit on SIGHUP before attach also, GitHub issue 3084. | Nicholas Marriott |
2021-08-27 | Replace %% in command lists (by copying them) for template arguments , | Nicholas Marriott |
2021-02-17 | Move the call to setupterm() into the client and have it pass the | Nicholas Marriott |
2021-02-12 | Do not care about the server socket closing if exiting anyway. | Nicholas Marriott |
2021-02-11 | Add a couple of helper functions, and flush imsgs on exit. | Nicholas Marriott |
2021-02-11 | Move file handling protocol stuff all into file.c so it can be reused | Nicholas Marriott |
2021-01-17 | Add -N flag to never start server even if command would normally do so, | Nicholas Marriott |
2020-10-30 | With csh, a tmux client gets SIGTERM before SIGCONT when killed with | Nicholas Marriott |
2020-09-22 | Fix warnings on some platforms with %llx and add a new message to handle | Nicholas Marriott |
2020-06-18 | Add a flag to make a client wait for an empty line before exiting in | Nicholas Marriott |
2020-06-10 | Instead of a buffer size limit on each pane, set a limit of 300 seconds | Nicholas Marriott |
2020-06-01 | Instead of sending all data to control mode clients as fast as possible, | Nicholas Marriott |
2020-05-26 | Pass the stdout file descriptor from the client as well as stdin and use | Nicholas Marriott |
2020-05-08 | imsg.h needs uio.h, pointed out by deraadt | Nicholas Marriott |
2020-04-27 | Do not close the stdout file descriptor in control mode as it will be | Nicholas Marriott |
2020-04-20 | Tidy up the terminal detection and feature code and add named sets of | Nicholas Marriott |
2020-04-13 | Make struct cmd local to cmd.c and move it out of tmux.h. | Nicholas Marriott |
2020-04-09 | Some unnecessary assignments and unused variables. | Nicholas Marriott |
2020-03-30 | Add to rather than replace flags with -c. | Nicholas Marriott |
2020-03-12 | When the server socket is given by the user with -S, create it with | Nicholas Marriott |
2020-01-29 | Warn if a message type that is no longer used is received. | Nicholas Marriott |
2019-12-16 | Need to include message size in the maximum buffer calculation. | Nicholas Marriott |
2019-12-16 | Instead of using large buffers in imsgs, add the data or path onto the end. | Nicholas Marriott |
2019-12-13 | Need to check in the error callback also. | Nicholas Marriott |
2019-12-13 | Do not spin waiting for exit, instead check in the write callback. | Nicholas Marriott |
2019-12-12 | Rewrite the code for reading and writing files. Now, if the client is | Nicholas Marriott |
2019-07-26 | Change "lost server" message to "server exited unexpectedly", from Neal | Nicholas Marriott |
2019-06-28 | When system calls indicate an error they return -1, not some arbitrary | Theo de Raadt |
2019-05-25 | Merge cmd_list_parse into cmd-parse.y so it can use the new alias | Nicholas Marriott |
2018-11-22 | Do not use PWD unless it actually matches the real working directory. | Nicholas Marriott |
2018-04-26 | Use <fcntl.h> instead of <sys/file.h> for open() and friends. | Philip Guenther |
2018-01-01 | Prefer PWD for current directory if present in client, from Wei Zhao in | Nicholas Marriott |
2017-12-19 | Report better error from server when socket create fails, GitHub issue | Nicholas Marriott |
2017-12-18 | Do not try to put more in command message than will fit when sending | Nicholas Marriott |
2017-07-14 | Because ignore SIGCHLD early, letting signal_del restore it doesn't work | Nicholas Marriott |
2017-07-12 | Move signal code into proc.c. | Nicholas Marriott |
2017-07-12 | Make shell_command a global like other stuff rather than making it an | Nicholas Marriott |
2017-01-24 | Add support for custom command aliases, this is an array option which | Nicholas Marriott |
2017-01-23 | Open /dev/ptm before pledge() and save it to be used for PTMGET later | Nicholas Marriott |
2017-01-20 | Print error rather than fatal() if tcgetattr() fails, which is much more | Nicholas Marriott |
2017-01-16 | Revert WIP parts of previous I didn't mean to commit yet. | Nicholas Marriott |
2017-01-16 | getopt() has a struct option so just return to using options_entry. | Nicholas Marriott |
2017-01-13 | Add -E to detach-client to exec a command to replace the client instead | Nicholas Marriott |
2016-10-03 | Remove some dead code in cmd-move-window.c and make a load of local | Nicholas Marriott |