summaryrefslogtreecommitdiffstats
AgeCommit message (Expand)Author
2015-11-24Make environ_set va_args and use it to tidy up some calls. Also add anicm
2015-11-24Shell command from -c doesn't have to be global, pass it as an argument.nicm
2015-11-24Do lock failures slightly better, return a special value so we don'tnicm
2015-11-24Actually show something (even if it not that helpful) if the servernicm
2015-11-24Document socket_path format.nicm
2015-11-24Tidy the code that works out the socket path, and just use the full pathnicm
2015-11-24Remove malloc_options DEBUG bit.nicm
2015-11-24Switch a fprintf to a fatal, and wrap some long lines.nicm
2015-11-24Remove the -I part of show-messages which isn't really that useful; thenicm
2015-11-24All kill-session -C to clear alerts in all windows, suggested by Aaronnicm
2015-11-24Log some system and libevent information at startup.nicm
2015-11-24Show libevent version in showmsgs -I.nicm
2015-11-24Make the log stuff a bit tidier with some helper functions.nicm
2015-11-24Fix usage of detach-client.nicm
2015-11-24Don't allow options in table without scope set.nicm
2015-11-23Partly revert previous, it is harmless to keep support for UTF-8 mousenicm
2015-11-23Remove support for the UTF-8 mouse extension. This was a briefly used,nicm
2015-11-22Don't leak extddata, memset after freeing it, not before. From Patricknicm
2015-11-22Add getpw to pledge, makes tmux work in YP environments, discovered bynicm
2015-11-22If display-time is set to 0, show status messages until a key is pressed;tim
2015-11-20Memory leaks and an uninitialized part of utf8_data, from Patrick Palka.nicm
2015-11-20The alerts callback should be fired for bells even if bell-action isnicm
2015-11-20Instead of separate tables for different types of options, give eachnicm
2015-11-19Only assume pasting with at least two characters, reduces problems fornicm
2015-11-19The activity flag could already be set, so queue the callback always (ifnicm
2015-11-18Use format_expand_time for display-message.nicm
2015-11-18Use __unused rather than rolling our own.nicm
2015-11-18Add s/foo/bar/: prefix for formats to substitute bar for foo.nicm
2015-11-18Sync the entire xmalloc.[ch] with the other users, but with the additionnicm
2015-11-18Don't update activity time twice for new sessions, and add some logging.nicm
2015-11-17Merge xmalloc.[ch] files across base, skipping OpenSSH for now.tobias
2015-11-160x7f is a valid key.nicm
2015-11-15Make key_code unsigned long long not uint64_t which is more portable fornicm
2015-11-15Accidentally turned off pledge, turn it back on.nicm
2015-11-14The character is an int so use %x not %hhx.nicm
2015-11-14The private use area at U+E000 to U+F8FF is not very useful if it isnicm
2015-11-14All these return values from utf8_* are confusing, use an enum.nicm
2015-11-14Rename a variable in utf8_combine for consistency and use 0xfffd fornicm
2015-11-14Couple of assignments to remove compiler warnings.nicm
2015-11-14Be more strict about invalid UTF-8.nicm
2015-11-14Push stdout and stderr to clients more aggressively, and add an event tonicm
2015-11-14Log more of UTF-8 input.nicm
2015-11-13Log option names in fatal() for missing option.nicm
2015-11-13Two spacing and spelling nits.nicm
2015-11-13Add window_visible_layout which ignores zoomed panes and use it fornicm
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadnicm
2015-11-12Rename overly-long utf8data to ud throughout.nicm
2015-11-12grid_put_utf8 is unused, remove it.nicm
2015-11-12Add utf8_padcstr and use it to align columns in list-keys.nicm
2015-11-12tweak previous; ok nicmjmc