summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-11-27Correctly aggregate together errors from nested config files (withNicholas Marriott
source-file). Fix by Thomas Adam, reported by Sam Livingstone-Gray
2012-11-27Allow cmd-run-shell to accept -t to specify the pane to display theNicholas Marriott
output, requested by Alexander Tsepkov.
2012-11-27When scrolling in copy mode with the mouse, scroll screen rather thanNicholas Marriott
moving cursor. This change from Ailin Nemui, alternative to a change from Stephen Hicks.
2012-11-27Revert last, after discussion it isn't necessary.Nicholas Marriott
2012-11-27Add window-status-last-* options, from Boris Faure.Nicholas Marriott
2012-11-27Fix session choice so that preferring unattached sessions actuallyNicholas Marriott
works, reported by Drew Frank.
2012-11-26Call realpath earlier on the socket directory path rather than on theNicholas Marriott
socket file path because the latter may not exist yet and in that case realpath is allowed to fail. From Romain Francoise.
2012-11-22Put helper function back, will be needed in a bit.Nicholas Marriott
2012-11-19Add halfpage commands to mode command string table (missed by accident),Nicholas Marriott
from Thomas Adam.
2012-11-19Clarify some points about config files, notably that they are only readNicholas Marriott
at server start. From Thomas Adam.
2012-11-19Use a utility function for common code to show errors in config file,Nicholas Marriott
from Thomas Adam.
2012-11-05Show last client activity time in default choose-client list.Nicholas Marriott
2012-10-31fix an off-by-oneokan
ok nicm@
2012-10-26Make mouse event structure clearer by defining events (up, click, drag)Nicholas Marriott
and simplifying how buttons and wheels are represented, from Ailin Nemui. Should be no functional changes.
2012-10-25Add ability to active pane in list-windows and find-window formats, fromNicholas Marriott
Carl Henrik Lunde.
2012-10-25Fix BELL_NONE which had been broken in some code reorganisation or otherNicholas Marriott
also don't redraw unnecessarily. From Seiji Ohashi.
2012-10-25Fix bad size in memcpy from Romain Francoise.Nicholas Marriott
2012-10-25Fix typo bell->bells from Thomas Adam.Nicholas Marriott
2012-10-15Fix some function prototypes from Helmut Tessarek.Nicholas Marriott
2012-10-11Fix a use-after-free when collapsing the tree in choose mode, fromNicholas Marriott
Carl Henrik Lunde.
2012-10-09Add tree keys to vi mode too, missed by accident.Nicholas Marriott
2012-10-02Allow session tree (C-b s) to expand and collapse sessions withNicholas Marriott
left/right/space keys. From Thomas Adam.
2012-10-02Remove some out of date text from man page, from Thomas Adam.Nicholas Marriott
2012-09-29Do not test client flags against TTY_FREEZE bit, reported by Tom Ryder.Nicholas Marriott
2012-09-27Do not leak file descriptor if not a tty, reported by Sebastien Marie.Nicholas Marriott
2012-09-25Add notification for input from a pane, from George Nachman.Nicholas Marriott
2012-09-25Fix search forward so it can match strings on the last line, SF bugNicholas Marriott
3571114 from "LiJunLe".
2012-09-24Add control_write_buffer, from George Nachman.Nicholas Marriott
2012-09-24Use pgrp of pty fd not pid of immediate child when recovering currentNicholas Marriott
working directory (like current process). From Marcel Partap.
2012-09-24Use ACS characters for choose-tree arrows based on diff from RomainNicholas Marriott
Francoise.
2012-09-05Handle empty list properly in choose-list, based on fix from Thomas Adam.Nicholas Marriott
2012-09-05We can't tell what the terminal has done with a DCS string, so reset theNicholas Marriott
cursor and attributes afterwards.
2012-09-04Trivial code simplification from Tim Ruehsen.Nicholas Marriott
2012-09-03Remove xterm CRA support - support is patchy and it will be done betterNicholas Marriott
using margins.
2012-09-03Use the right index when adding item in choose-tree, from Thomas Adam.Nicholas Marriott
2012-09-03When choosing a pane found by find-window, switch to that pane ratherNicholas Marriott
than just the window. Also use a helper function for the inner loop.
2012-09-03Rename variables to something a but more understandable.Nicholas Marriott
2012-09-03add cmd-choose-list to allow arbitrary options to be selected. FromNicholas Marriott
Thomas Adam.
2012-09-03Remove an unused variable.Nicholas Marriott
2012-09-03Send notifications to control clients. Also don't redraw client whenNicholas Marriott
suspended.
2012-09-03Change format of choose-tree arrows slightly, from Romain Francoise.Nicholas Marriott
2012-09-03If stdin in the client is enable immediately, tmux will eat anythingNicholas Marriott
sent to stdin before it is needed, which can be inconvenient (eg pasting commands). Instead, start with stdin disabled and reuse MSG_STDIN from server->client to mean that stdin should be enabled. Based on a diff from Chris Johnsen.
2012-09-03Can't call evtimer_pending on uninitialized events, callNicholas Marriott
evtimer_initialized first. Reported by Vladimir Lomov, fix from Thomas Adam slightly modified by me.
2012-08-27Change a log to fprintf that was missed last time around, from Tiago Cunha.Nicholas Marriott
2012-08-27Instead of requiring a prompt to enter all numbers >10, go back toNicholas Marriott
0-9a-z and add A-Z and enter the prompt when M-0 to M-9 are pressed (like in copy mode). Prompted by request from mcbride@, help from Thomas Adam.
2012-08-21xterm won't reach version 500 for a while so set that as the upper limit.Nicholas Marriott
2012-08-21Fix up window reference counting and don't crash if the rename timerNicholas Marriott
fires while the window is dead but still referenced. Fixes problem reported by Michael Scholz.
2012-08-14Boldify windows with alerts in choose-* list.Nicholas Marriott
2012-08-14Tidy up tty_write, from Sean Estabrooks.Nicholas Marriott
2012-08-14Use a separate define for each default format template and strip clutterNicholas Marriott
from the choose-tree defaults.