aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Rather than having two grids for each pane, one for ASCII and one forNicholas Marriott2013-01-18
| | | | | UTF-8, collapse the two together. Simplifies the code at the expense of more memory (which can probably be reduced again later).
* Style nits - return (x) not return x.Nicholas Marriott2013-01-18
|
* Do not allow cursor colours to be set beginning with ? as that willNicholas Marriott2013-01-17
| | | | report the colour, from Hayaki Saito.
* Fix some blank line nits.Nicholas Marriott2013-01-17
|
* Remove the layout undo/redo code which never really worked.Nicholas Marriott2013-01-17
|
* Implement ECH (erase character, CSI X). Reported by Christian Neukirchen.Nicholas Marriott2013-01-15
|
* If timing between keys is less than (by default) 1 millisecond, assumeNicholas Marriott2013-01-15
| | | | | the text is being pasted. assume-paste-time option changes the value (0 disables). Based on a diff from Marcin Kulik.
* Add ^ and $ special command targets to select lowest and highestNicholas Marriott2012-12-24
| | | | numbered windows, from Raghavendra D Prabhu.
* Add -T option to select-window to toggle to last window if alreadyNicholas Marriott2012-12-24
| | | | current, from Raghavendra D Prabhu.
* Add missing function prototype.Nicholas Marriott2012-12-24
|
* Add a -u flag to choose-tree to start uncollapsed, from Raghavendra DNicholas Marriott2012-12-24
| | | | Prabhu.
* We no longer use struct eproc for kinfo_proc in sysctl.h so theremillert2012-12-18
| | | | | | | is no direct need for sys/proc.h or sys/resource.h. Some consumers of kinfo_proc need these for the proc flags and rlimit defines like RLIM_INF so add the appropriate includes to them. OK deraadt@ sthen@
* Change load_cfg to fix a crash reported by jasper.Nicholas Marriott2012-12-13
|
* Use the CMD_*_USAGE defines consistently, from Thomas Adam.Nicholas Marriott2012-12-09
|
* Handle resetting 256-colours properly when parsing #[default],Nicholas Marriott2012-12-08
| | | | #[fg=default] and #[bg=default] styles.
* Use strlcat not strncat in load_cfg and some other trivial tidying fromNicholas Marriott2012-12-06
| | | | Tiago Cunha.
* Fix argument order in a log statement.Nicholas Marriott2012-12-06
|
* Simplify command string parsing with a helper function from Tiago Cunha.Nicholas Marriott2012-12-06
|
* Fix return value of load_cfg, from Thomas Adam.Nicholas Marriott2012-11-27
|
* Support middle-click paste, based on a diff from Ailin Nemui.Nicholas Marriott2012-11-27
|
* Support the 47 and 1047 SM and RM sequences (alternate screen withoutNicholas Marriott2012-11-27
| | | | cursor), requested by I forget who ages ago.
* Correctly aggregate together errors from nested config files (withNicholas Marriott2012-11-27
| | | | source-file). Fix by Thomas Adam, reported by Sam Livingstone-Gray
* Allow cmd-run-shell to accept -t to specify the pane to display theNicholas Marriott2012-11-27
| | | | output, requested by Alexander Tsepkov.
* When scrolling in copy mode with the mouse, scroll screen rather thanNicholas Marriott2012-11-27
| | | | | moving cursor. This change from Ailin Nemui, alternative to a change from Stephen Hicks.
* Revert last, after discussion it isn't necessary.Nicholas Marriott2012-11-27
|
* Add window-status-last-* options, from Boris Faure.Nicholas Marriott2012-11-27
|
* Fix session choice so that preferring unattached sessions actuallyNicholas Marriott2012-11-27
| | | | works, reported by Drew Frank.
* Call realpath earlier on the socket directory path rather than on theNicholas Marriott2012-11-26
| | | | | socket file path because the latter may not exist yet and in that case realpath is allowed to fail. From Romain Francoise.
* Put helper function back, will be needed in a bit.Nicholas Marriott2012-11-22
|
* Add halfpage commands to mode command string table (missed by accident),Nicholas Marriott2012-11-19
| | | | from Thomas Adam.
* Clarify some points about config files, notably that they are only readNicholas Marriott2012-11-19
| | | | at server start. From Thomas Adam.
* Use a utility function for common code to show errors in config file,Nicholas Marriott2012-11-19
| | | | from Thomas Adam.
* Show last client activity time in default choose-client list.Nicholas Marriott2012-11-05
|
* fix an off-by-oneokan2012-10-31
| | | | ok nicm@
* Make mouse event structure clearer by defining events (up, click, drag)Nicholas Marriott2012-10-26
| | | | | and simplifying how buttons and wheels are represented, from Ailin Nemui. Should be no functional changes.
* Add ability to active pane in list-windows and find-window formats, fromNicholas Marriott2012-10-25
| | | | Carl Henrik Lunde.
* Fix BELL_NONE which had been broken in some code reorganisation or otherNicholas Marriott2012-10-25
| | | | also don't redraw unnecessarily. From Seiji Ohashi.
* Fix bad size in memcpy from Romain Francoise.Nicholas Marriott2012-10-25
|
* Fix typo bell->bells from Thomas Adam.Nicholas Marriott2012-10-25
|
* Fix some function prototypes from Helmut Tessarek.Nicholas Marriott2012-10-15
|
* Fix a use-after-free when collapsing the tree in choose mode, fromNicholas Marriott2012-10-11
| | | | Carl Henrik Lunde.
* Add tree keys to vi mode too, missed by accident.Nicholas Marriott2012-10-09
|
* Allow session tree (C-b s) to expand and collapse sessions withNicholas Marriott2012-10-02
| | | | left/right/space keys. From Thomas Adam.
* Remove some out of date text from man page, from Thomas Adam.Nicholas Marriott2012-10-02
|
* Do not test client flags against TTY_FREEZE bit, reported by Tom Ryder.Nicholas Marriott2012-09-29
|
* Do not leak file descriptor if not a tty, reported by Sebastien Marie.Nicholas Marriott2012-09-27
|
* Add notification for input from a pane, from George Nachman.Nicholas Marriott2012-09-25
|
* Fix search forward so it can match strings on the last line, SF bugNicholas Marriott2012-09-25
| | | | 3571114 from "LiJunLe".
* Add control_write_buffer, from George Nachman.Nicholas Marriott2012-09-24
|
* Use pgrp of pty fd not pid of immediate child when recovering currentNicholas Marriott2012-09-24
| | | | working directory (like current process). From Marcel Partap.