summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
AgeCommit message (Collapse)Author
2013-07-05Implement s, S, C mode switch commands in vi(1) mode, from Ben Boeckel.Nicholas Marriott
2013-06-23Focus events can cause trouble if left on and they can't be turned offNicholas Marriott
during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off.
2013-06-23Always push a focus event when the application turns it on, prompted byNicholas Marriott
discussion with Hayaki Saito a while ago.
2013-06-23Mark control commands specially so the client can identify them, basedNicholas Marriott
on a diff from George Nachman a while back.
2013-06-11revert r1.156 "Add support for focus notifications when tmux pane changes"Stuart Henderson
beck@ found annoying beeps if a machine was shutdown while tmux is running and you then focus in/out of an xterm; kettenis tracked it down to 1.156.
2013-06-02escape "Ss", becuase groff thinks it has found a macro;Jason McIntyre
2013-06-02The actual terminfo entries we ended up with for cursor changes are Cs,Nicholas Marriott
Ce, Ss and Se (not Cc, Ce, Cs, Csr). So use and document these instead of the ones we were using earlier.
2013-05-31Demote the old single-character replacement variables (#S and friends)Nicholas Marriott
to aliases of formats. From Tiago Cunha.
2013-05-31Add host_short format, from Tiago Cunha.Nicholas Marriott
2013-05-31Use u_char for the send-keys string to avoid mangling top-bit-setNicholas Marriott
characters when they are promoted to int and passed to window_pane_key. Reported by Jacob Bang.
2013-05-31Instead of eating 1024 bytes or so for the arguments of each command,Nicholas Marriott
save memory by using an RB tree. From Tiago Cunha.
2013-05-15Don't let cursor position overflow when reflowing, from ChristopherNicholas Marriott
Collins.
2013-05-15Reserve space for \0 in cmd_print, from George Nachman.Nicholas Marriott
2013-05-15RIS should reset focus reporting, from Hayaki Saito.Nicholas Marriott
2013-05-07Don't limit width and height to 222 in standard mouse mode.Nicholas Marriott
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