Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
| * | Simplify appending to string options. | nicm | 2017-01-12 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-12-10 | |
|\| | ||||
| * | Spacing nits. | nicm | 2016-12-09 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-10-12 | |
|\| | | | | | | | | | | | Conflicts: format.c osdep-openbsd.c | |||
| * | Add static in window-*.c and move some internal functions out of tmux.h. | nicm | 2016-10-11 | |
| | | ||||
| * | Loads more static, except for cmd-*.c and window-*.c. | nicm | 2016-10-10 | |
| | | ||||
* | | No longer set __progname, we have getprogname(). | Nicholas Marriott | 2016-05-30 | |
| | | ||||
* | | __progname -> getprogname() | Thomas Adam | 2016-05-27 | |
| | | | | | | | | Fix fallout from recent use of getprogname(), which deprecates __progname. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-05-27 | |
|\| | ||||
| * | Use getprogname() instead of __progname to make portability easier. | nicm | 2016-05-27 | |
| | | ||||
* | | Use osdep_event_init() so that LIBEVENT_NOEPOLL and so on are set to turn off | Nicholas Marriott | 2016-05-20 | |
| | | | | | | | | broken event methods. Reported by Suraj N Kurapati. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-05-05 | |
|\| | ||||
| * | Fix up a couple of long lines. | nicm | 2016-05-04 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-03-05 | |
|\| | | | | | | | | | Conflicts: tmux.c | |||
| * | If setlocale("en_US.UTF-8") succeeds, then don't do the check for UTF-8 | nicm | 2016-03-05 | |
| | | | | | | | | | | | | | | locale since if it isn't UTF-8 the system is broken anyway. If it fails, try "" and check for UTF-8 with nl_langinfo(CODESET) rather than wcwidth(). Based on a diff from schwarze@, nl_langinfo also suggested by stsp@. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-03-05 | |
|\| | ||||
| * | Although we always have en_US.UTF-8 on OpenBSD, some platforms do not, | nicm | 2016-03-05 | |
| | | | | | | | | | | so fall back to setlocale(LC_CTYPE, ""). tmux requires a UTF-8 locale, so check with wcwidth() on a UTF-8 character after setlocale(). | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-03-02 | |
|\| | | | | | | | | | Conflicts: utf8.c | |||
| * | Remove unused variables, from Michal Mazurek. | nicm | 2016-03-01 | |
| | | ||||
| * | Use system wcwidth() instead of carrying around UTF-8 width tables. | nicm | 2016-03-01 | |
| | | ||||
* | | Remove malloc_options debug bit (already gone from OpenBSD). | Nicholas Marriott | 2016-02-19 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-01-19 | |
|\| | ||||
| * | I no longer use my SourceForge address so replace it. | nicm | 2016-01-19 | |
| | | ||||
* | | Conflicts: | Thomas Adam | 2015-12-08 | |
|\| | | | | | | | Makefile | |||
| * | Add hooks infrastructure, basic commands (set-hook, show-hooks) and a | nicm | 2015-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 Adam | 2015-11-25 | |
|\| | | | | | | | | | | | | | Conflicts: log.c proc.c tmux.c | |||
| * | Make environ_set va_args and use it to tidy up some calls. Also add a | nicm | 2015-11-24 | |
| | | | | | | | | missing word in manpage (from jmc). | |||
| * | Shell command from -c doesn't have to be global, pass it as an argument. | nicm | 2015-11-24 | |
| | | ||||
| * | Tidy the code that works out the socket path, and just use the full path | nicm | 2015-11-24 | |
| | | | | | | | | in the global socket_path rather than copying it. | |||
| * | Remove malloc_options DEBUG bit. | nicm | 2015-11-24 | |
| | | ||||
| * | Remove the -I part of show-messages which isn't really that useful; the | nicm | 2015-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. | nicm | 2015-11-24 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-11-23 | |
|\| | | | | | | | | | | | Conflicts: server.c tmux.c | |||
| * | Add getpw to pledge, makes tmux work in YP environments, discovered by | nicm | 2015-11-22 | |
| | | | | | | | | matthieu, ok deraadt | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-11-21 | |
|\| | | | | | | | | | Conflicts: tmux.h | |||
| * | Instead of separate tables for different types of options, give each | nicm | 2015-11-20 | |
| | | | | | | | | option a scope type (server, session, window) in one table. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-11-15 | |
|\| | | | | | | | | | | | Conflicts: server.c tmux.c | |||
| * | Accidentally turned off pledge, turn it back on. | nicm | 2015-11-15 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-11-14 | |
|\| | | | | | | | | | | | Conflicts: server.c tmux.c | |||
| * | Push stdout and stderr to clients more aggressively, and add an event to | nicm | 2015-11-14 | |
| | | | | | | | | continue if the send fails. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-11-12 | |
|\| | ||||
| * | tmux is UTF-8, so if $TMUX is set (tmux running in tmux), the client is | nicm | 2015-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-8 | nicm | 2015-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 Adam | 2015-11-12 | |
|\| | ||||
| * | Drop mouse-utf8 option and always turn on UTF-8 mouse if the client says | nicm | 2015-11-11 | |
| | | | | | | | | it supports UTF-8. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-10-28 | |
|\| | ||||
| * | Like options, move the environ struct into environ.c. | nicm | 2015-10-28 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-10-27 | |
|\| | | | | | | | | | | | | | | | | | | | Conflicts: Makefile client.c server-client.c server.c tmux.c tmux.h | |||
| * | Move struct options into options.c. | nicm | 2015-10-27 | |
| | | ||||
| * | Break the common process set up, event loop and imsg dispatch code | nicm | 2015-10-27 | |
| | | | | | | | | | | between server and client out into a separate internal API. This will make it easier to add another process. |