Age | Commit message (Expand) | Author |
2024-09-30 | Only use default-shell for popups, return to /bin/sh for run-shell, | Nicholas Marriott |
2024-05-15 | Use default-shell for command prompt #() and popups as well | Nicholas Marriott |
2022-02-01 | Mention that if-shell and #() use /bin/sh. | Nicholas Marriott |
2021-10-24 | For open/openat, if the flags parameter does not contain O_CREAT, the | Theo de Raadt |
2021-10-11 | Add -e flag to set environment for popup, from Alexis Hildebrandt in | Nicholas Marriott |
2021-10-05 | Make send-keys without any arguments send the key it is bound to (if | Nicholas Marriott |
2021-10-05 | Separate "very visible" flag from blinking flag, it should not affect | Nicholas Marriott |
2021-08-13 | Fill in some other bits on new panes. | Nicholas Marriott |
2021-08-13 | Add menu options to convert a popup into a pane. | Nicholas Marriott |
2021-03-02 | Drop support for popups where the content is provided directly to tmux | Nicholas Marriott |
2021-02-19 | Check return value of chdir() to stop a silly warning with some | Nicholas Marriott |
2020-05-16 | Add 'e' key in buffer mode to open the buffer in an editor. | Nicholas Marriott |
2020-03-24 | Add support for overlay popup boxes to show text or output temporarily | Nicholas Marriott |
2020-03-19 | Add a flag to run a background process in a pty as well, not used for | Nicholas Marriott |
2019-06-28 | When system calls indicate an error they return -1, not some arbitrary | Theo de Raadt |
2018-11-19 | evbuffer_new and bufferevent_new can both fail (when malloc fails) and | Nicholas Marriott |
2018-10-28 | Do not printf NULL. | Nicholas Marriott |
2018-09-27 | Use same working directory rules for jobs as new windows rather than | Nicholas Marriott |
2018-08-23 | all_jobs can be static. | Nicholas Marriott |
2018-08-23 | Move job struct into job.c. | Nicholas Marriott |
2018-03-08 | Add a missing client-detached hook when the server shuts down, and do | Nicholas Marriott |
2017-07-14 | Because ignore SIGCHLD early, letting signal_del restore it doesn't work | Nicholas Marriott |
2017-07-12 | Block signals between forking and clearing signal handlers (or calling | Nicholas Marriott |
2017-07-12 | Move signal code into proc.c. | Nicholas Marriott |
2017-05-31 | Style and spacing nits. | Nicholas Marriott |
2017-04-25 | Do not update TERM into config file parsing has finished. | Nicholas Marriott |
2017-04-20 | If a #() command doesn't exit, use its most recent line of output (it | Nicholas Marriott |
2017-03-09 | Move server_fill_environ into environ.c and move some other common code | Nicholas Marriott |
2016-10-10 | Loads more static, except for cmd-*.c and window-*.c. | Nicholas Marriott |
2016-01-19 | I no longer use my SourceForge address so replace it. | Nicholas Marriott |
2015-11-18 | Use __unused rather than rolling our own. | Nicholas Marriott |
2015-10-31 | Because pledge(2) does not allow us to pass directory file descriptors | Nicholas Marriott |
2015-10-28 | Like options, move the environ struct into environ.c. | Nicholas Marriott |
2015-06-17 | Use an explicit job state instead of avoid closing our side of the | Nicholas Marriott |
2015-04-24 | Set working directory for run-shell and if-shell. | Nicholas Marriott |
2014-10-20 | Tidy up some includes. | Nicholas Marriott |
2014-04-14 | Don't leak socketpair file descriptors if fork fails. Spotted by Balazs | Nicholas Marriott |
2013-10-10 | Use format_get_command() and some spacing tweaks. | Nicholas Marriott |
2013-04-17 | %zu format for size_t. | Nicholas Marriott |
2013-04-10 | Set EV_WRITE for jobs or run/if-shell jobs can hang. From Chris Johnsen. | Nicholas Marriott |
2013-03-25 | Extend jobs to support writing and use that for copy-pipe instead of | Nicholas Marriott |
2013-03-22 | No more lint means no more ARGSUSED. | Nicholas Marriott |
2012-07-10 | xfree is not particularly helpful, remove it. From Thomas Adam. | Nicholas Marriott |
2012-01-29 | Call bufferevent_free before closing file descriptor associated with it | Nicholas Marriott |
2011-01-26 | Simplify the way jobs work and drop the persist type, so all jobs are | Nicholas Marriott |
2011-01-26 | Use LIST_* not SLIST_*. | Nicholas Marriott |
2011-01-23 | Set $TMUX without the session when background jobs are run. | Nicholas Marriott |
2011-01-08 | Move all calls to fcntl(...O_NONBLOCK) into a function and clear the | Nicholas Marriott |
2010-10-16 | Trying to set FD_CLOEXEC on every fd is a lost cause, just use | Nicholas Marriott |
2010-08-19 | Do not call event_del() for signals after fork(), just use sigaction() | Nicholas Marriott |