summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
AgeCommit message (Collapse)Author
2013-04-24.Op Fl b not .Fl b for run-shell synopsis, from Ben Boeckel.Nicholas Marriott
2013-04-24Rename global configuration define.Nicholas Marriott
2013-04-22When using choose-tree -u, start with the current windowNicholas Marriott
highlighted. From Thomas Adam.
2013-04-22Get session of -t window rather than client's window.Nicholas Marriott
2013-04-22Call recalculate_sizes() after killing window in case it is in a groupedNicholas Marriott
session, from Daniel Ralston.
2013-04-22Use lockf which is more portable than flock, from Dagobert Michelsen.Nicholas Marriott
2013-04-21Don't let server_client_check_focus use a dead bufferevent, from RomainNicholas Marriott
Francoise.
2013-04-17(long long) and %lld for time_t outputTheo de Raadt
ok nicm
2013-04-17%zu format for size_t.Nicholas Marriott
2013-04-12Remove some Korean characters from the zero-width list that apparentlyNicholas Marriott
shouldn't be there, from Jeong Mok Cho.
2013-04-12Copy the client into the new cmdq in source-file so commands that workNicholas Marriott
on it (such as new-session) can work. Fixes issue reported by oss-adv at users dot sf dot net.
2013-04-11Call setlocale(LC_TIME) at startup.Nicholas Marriott
2013-04-11Send an SGR0 after turning on modifyOtherKeys to fix Terminal.app whichNicholas Marriott
treats \033[>4;1m and \033[4;1m (bold+underline). Reported & tested by otto@.
2013-04-10Set EV_WRITE for jobs or run/if-shell jobs can hang. From Chris Johnsen.Nicholas Marriott
2013-04-10Fix bug where end guard in control mode was not printed after sessionNicholas Marriott
destroyed, from George Nachman.
2013-04-10Missed -o from set-window-option, from Ben Boeckel.Nicholas Marriott
2013-04-10Remove some code not needed on OpenBSD.Nicholas Marriott
2013-03-28If -s to swap-pane is not given, use the current pane.Nicholas Marriott
2013-03-28Make copy-mode -u still scroll up if already in copy mode, handy forNicholas Marriott
people who bind it with -n.
2013-03-27Add TMUX_TMPDIR variable to put the socket directory outsideNicholas Marriott
TMPDIR. From Ben Boeckel.
2013-03-27Move the cursor back into the last column on CUU/CUD to match xtermNicholas Marriott
behaviour. From George Nachman.
2013-03-27Remove tmux's (already minimal) 88 colour support. Such terminals areNicholas Marriott
few and unnecessary.
2013-03-26Only accept partial keys if the timer has not expired, fixes infiniteNicholas Marriott
loop when Escape is pressed the wrong number of times.
2013-03-26Fix compiler warnings, missing #include. From Thomas Adam.Nicholas Marriott
2013-03-25Try to establish client for run-shell and if-shell if no -t.Nicholas Marriott
2013-03-25Revert the command-prefix change which breaks sequences of commands.Nicholas Marriott
2013-03-25Set pane resize flag when needed.Nicholas Marriott
2013-03-25Sort includes and fix spaces.Nicholas Marriott
2013-03-25b comes before t.Nicholas Marriott
2013-03-25Process ^[ as meta when a partial key is found.Nicholas Marriott
2013-03-25Add -P and -F to new-session.Nicholas Marriott
2013-03-25Create a new context when copying instead of using the inputNicholas Marriott
context. The input context may not exist yet. Fixes crash when copying from config file errors.
2013-03-25Extend jobs to support writing and use that for copy-pipe instead ofNicholas Marriott
popen, from Chris Johnsen.
2013-03-25Handle empty pending output (not a failure) and add \n. From GeorgeNicholas Marriott
Nachman.
2013-03-25Handle no client better in display-message.Nicholas Marriott
2013-03-25When only two panes in a window, only draw half the separating line asNicholas Marriott
active.
2013-03-25Don't let display-message crash if no client, from George Nachman.Nicholas Marriott
2013-03-25Only send end guard if begin was sent, from George Nachman.Nicholas Marriott
2013-03-25Include prefix on ids, from George Nachman.Nicholas Marriott
2013-03-25Write escaped output in control mode rather than hex, from GeorgeNicholas Marriott
Nachman.
2013-03-25Clarify zoom/unzoom, from Romain Francoise.Nicholas Marriott
2013-03-25Remove unnecessary .Pp.Nicholas Marriott
2013-03-25Don't zoom windows with one pane, from Romain Francoise.Nicholas Marriott
2013-03-25We ignore SIGWINCH until ready, so send a MSG_RESIZE immediately whenNicholas Marriott
becoming ready.
2013-03-25Don't add prefix to %output pane id.Nicholas Marriott
2013-03-25Clean up capture-pane and add -P option to dump pending output, based onNicholas Marriott
code from George Nachman.
2013-03-25Document control mode in the manpage, from George Nachman.Nicholas Marriott
2013-03-25Use single stdout and stderr for control clients.Nicholas Marriott
2013-03-25Fix if-shell and run-shell if there are no sessions. Batted aroundNicholas Marriott
through several people, finished off by Chris Johnsen.
2013-03-25Add home and end as modified by xterm in keypad mode, from ChrisNicholas Marriott
Johnsen.