aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
Commit message (Collapse)AuthorAge
...
* | Conflicts:Thomas Adam2015-12-08
|\| | | | | | | Makefile
| * Add hooks infrastructure, basic commands (set-hook, show-hooks) and anicm2015-12-08
| | | | | | | | | | | | couple of not very useful client hooks. This will eventually let commands be run at various points and on notifications. Joint work with Thomas Adam.
* | Merge branch 'obsd-master'Thomas Adam2015-11-25
|\| | | | | | | | | | | | | Conflicts: log.c proc.c tmux.c
| * Make environ_set va_args and use it to tidy up some calls. Also add anicm2015-11-24
| | | | | | | | missing word in manpage (from jmc).
| * Shell command from -c doesn't have to be global, pass it as an argument.nicm2015-11-24
| |
| * Tidy the code that works out the socket path, and just use the full pathnicm2015-11-24
| | | | | | | | in the global socket_path rather than copying it.
| * Remove malloc_options DEBUG bit.nicm2015-11-24
| |
| * Remove the -I part of show-messages which isn't really that useful; thenicm2015-11-24
| | | | | | | | | | server start time can now be accessed with a new start_time format (use: tmux display -p '#{t:start_time}')
| * Make the log stuff a bit tidier with some helper functions.nicm2015-11-24
| |
* | Merge branch 'obsd-master'Thomas Adam2015-11-23
|\| | | | | | | | | | | Conflicts: server.c tmux.c
| * Add getpw to pledge, makes tmux work in YP environments, discovered bynicm2015-11-22
| | | | | | | | matthieu, ok deraadt
* | Merge branch 'obsd-master'Thomas Adam2015-11-21
|\| | | | | | | | | Conflicts: tmux.h
| * Instead of separate tables for different types of options, give eachnicm2015-11-20
| | | | | | | | option a scope type (server, session, window) in one table.
* | Merge branch 'obsd-master'Thomas Adam2015-11-15
|\| | | | | | | | | | | Conflicts: server.c tmux.c
| * Accidentally turned off pledge, turn it back on.nicm2015-11-15
| |
* | Merge branch 'obsd-master'Thomas Adam2015-11-14
|\| | | | | | | | | | | Conflicts: server.c tmux.c
| * Push stdout and stderr to clients more aggressively, and add an event tonicm2015-11-14
| | | | | | | | continue if the send fails.
* | Merge branch 'obsd-master'Thomas Adam2015-11-12
|\|
| * tmux is UTF-8, so if $TMUX is set (tmux running in tmux), the client isnicm2015-11-12
| | | | | | | | UTF-8. Also try to make the existing checks more readable.
| * Nuke the utf8 and status-utf8 options and make tmux only a UTF-8nicm2015-11-12
| | | | | | | | | | terminal. We still support non-UTF-8 terminals outside tmux, but inside it is always UTF-8 (as when the utf8 and status-utf8 options were on).
* | Merge branch 'obsd-master'Thomas Adam2015-11-12
|\|
| * Drop mouse-utf8 option and always turn on UTF-8 mouse if the client saysnicm2015-11-11
| | | | | | | | it supports UTF-8.
* | Merge branch 'obsd-master'Thomas Adam2015-10-28
|\|
| * Like options, move the environ struct into environ.c.nicm2015-10-28
| |
* | Merge branch 'obsd-master'Thomas Adam2015-10-27
|\| | | | | | | | | | | | | | | | | | | Conflicts: Makefile client.c server-client.c server.c tmux.c tmux.h
| * Move struct options into options.c.nicm2015-10-27
| |
| * Break the common process set up, event loop and imsg dispatch codenicm2015-10-27
| | | | | | | | | | between server and client out into a separate internal API. This will make it easier to add another process.
* | __OpenBSD__ around pledge()Thomas Adam2015-10-25
| |
* | Merge branch 'obsd-master'Thomas Adam2015-10-25
|\|
| * Let's see if anyone screams about not being able to specify $TMPDIRderaadt2015-10-25
| | | | | | | | | | | | | | | | | | for their tmux sockets. (Over the years, I have seen $TMPDIR set up worse than /tmp many times, and don't know how this practice infected other parts of the system. Nothing uses tmpdir(3), nor a huge-temporary-file program like sort.) ok nicm
* | Merge branch 'obsd-master'Thomas Adam2015-10-25
|\| | | | | | | | | Conflicts: cmd-find.c
| * tmux can call pledge() in main with large set and then reduce itnicm2015-10-23
| | | | | | | | | | slightly in the server to "stdio rpath wpath cpath fattr unix recvfd proc exec tty ps".
* | Some header fixes.Nicholas Marriott2015-10-15
| |
* | Add missing <time.h>Thomas Adam2015-09-14
| |
* | Merge branch 'obsd-master'Thomas Adam2015-09-14
|\|
| * Move tzset() from log_open to main.nicm2015-09-14
| |
* | osdep_event_init not event_init.Nicholas Marriott2015-09-10
| |
* | Merge branch 'obsd-master'Thomas Adam2015-09-06
|\| | | | | | | | | | | Conflicts: cfg.c tmux.c
| * A couple of style nits.nicm2015-09-03
| |
| * Work out config file when needed not at startup.nicm2015-09-01
| |
| * Path from $TMUX does not need to be global anymore.nicm2015-08-30
| |
| * Login shell can be a client flag, and move the exec code into client.c.nicm2015-08-30
| |
| * Event base does not need to be global.nicm2015-08-30
| |
* | Merge branch 'obsd-master'Thomas Adam2015-08-30
|\| | | | | | | | | | | Conflicts: Makefile format.c
| * Some style nits and dead assignments.nicm2015-08-30
| |
* | Merge branch 'obsd-master'Thomas Adam2015-07-20
|\|
| * Add an option (history-file) for a file to save/restore command promptnicm2015-07-20
| | | | | | | | history, from Olof-Joachim Frahm.
* | Check for flock in libbsd for AIX, and remove some getopt.h includes. From JNicholas Marriott2015-07-13
| | | | | | | | Raynor.
* | Merge branch 'obsd-master'Thomas Adam2015-06-07
|\| | | | | | | | | | | | | Conflicts: client.c tmux.1 tmux.c
| * tweak SYNOPSIS and usage();jmc2015-06-04
| |