summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
AgeCommit message (Expand)Author
2015-11-22Don't leak extddata, memset after freeing it, not before. From PatrickNicholas Marriott
2015-11-22Add getpw to pledge, makes tmux work in YP environments, discovered byNicholas Marriott
2015-11-22If display-time is set to 0, show status messages until a key is pressed;Tim van der Molen
2015-11-20Memory leaks and an uninitialized part of utf8_data, from Patrick Palka.Nicholas Marriott
2015-11-20The alerts callback should be fired for bells even if bell-action isNicholas Marriott
2015-11-20Instead of separate tables for different types of options, give eachNicholas Marriott
2015-11-19Only assume pasting with at least two characters, reduces problems forNicholas Marriott
2015-11-19The activity flag could already be set, so queue the callback always (ifNicholas Marriott
2015-11-18Use format_expand_time for display-message.Nicholas Marriott
2015-11-18Use __unused rather than rolling our own.Nicholas Marriott
2015-11-18Add s/foo/bar/: prefix for formats to substitute bar for foo.Nicholas Marriott
2015-11-18Sync the entire xmalloc.[ch] with the other users, but with the additionNicholas Marriott
2015-11-18Don't update activity time twice for new sessions, and add some logging.Nicholas Marriott
2015-11-17Merge xmalloc.[ch] files across base, skipping OpenSSH for now.Tobias Stoeckmann
2015-11-160x7f is a valid key.Nicholas Marriott
2015-11-15Make key_code unsigned long long not uint64_t which is more portable forNicholas Marriott
2015-11-15Accidentally turned off pledge, turn it back on.Nicholas Marriott
2015-11-14The character is an int so use %x not %hhx.Nicholas Marriott
2015-11-14The private use area at U+E000 to U+F8FF is not very useful if it isNicholas Marriott
2015-11-14All these return values from utf8_* are confusing, use an enum.Nicholas Marriott
2015-11-14Rename a variable in utf8_combine for consistency and use 0xfffd forNicholas Marriott
2015-11-14Couple of assignments to remove compiler warnings.Nicholas Marriott
2015-11-14Be more strict about invalid UTF-8.Nicholas Marriott
2015-11-14Push stdout and stderr to clients more aggressively, and add an event toNicholas Marriott
2015-11-14Log more of UTF-8 input.Nicholas Marriott
2015-11-13Log option names in fatal() for missing option.Nicholas Marriott
2015-11-13Two spacing and spelling nits.Nicholas Marriott
2015-11-13Add window_visible_layout which ignores zoomed panes and use it forNicholas Marriott
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadNicholas Marriott
2015-11-12Rename overly-long utf8data to ud throughout.Nicholas Marriott
2015-11-12grid_put_utf8 is unused, remove it.Nicholas Marriott
2015-11-12Add utf8_padcstr and use it to align columns in list-keys.Nicholas Marriott
2015-11-12tweak previous; ok nicmJason McIntyre
2015-11-12Tidy utf8.c a little: build table on first use, and make utf8_width takeNicholas Marriott
2015-11-12tmux is UTF-8, so if $TMUX is set (tmux running in tmux), the client isNicholas Marriott
2015-11-12If we know the terminal outside tmux is not UTF-8, replace UTF-8 inNicholas Marriott
2015-11-12Nuke the utf8 and status-utf8 options and make tmux only a UTF-8Nicholas Marriott
2015-11-12Remove the mouse_utf8_flag format as well.Nicholas Marriott
2015-11-12Support UTF-8 key bindings by expanding the key type from int toNicholas Marriott
2015-11-12Default history-file should be "" not NULL, from Greg Onufe.Nicholas Marriott
2015-11-11Drop mouse-utf8 option and always turn on UTF-8 mouse if the client saysNicholas Marriott
2015-11-10If realpath() fails just try the original path.Nicholas Marriott
2015-11-10Handle absolute paths properly, and don't use resolved path inNicholas Marriott
2015-11-05Same bug as last commit, but in the other copy of the loop in this file...Nicholas Marriott
2015-11-05Update the internal wcwidth(3) table of tmux(1) to match the dataIngo Schwarze
2015-11-05Pass through right click if mouse is on, from Patrick Palka.Nicholas Marriott
2015-11-03Detach the client we are looping over, from Thomas Adam.Nicholas Marriott
2015-10-31Fall back silently to ~ or / rather than checking -c with access(), thisNicholas Marriott
2015-10-31Don't shift version out of peerid, it is needed later.Nicholas Marriott
2015-10-31The output log is only useful once and it means creating a file, so openNicholas Marriott