summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/server-window.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Move alerts onto events rather than checking every loop.nicm2015-08-291-191/+0
* Better take on reducing the name timer. Again check for name changes innicm2015-08-291-1/+2
* Revert previous; we do need a timer, until I have a better idea. Wenicm2015-08-281-2/+1
* We now only checking for name changes when the active pane has changed,nicm2015-08-281-1/+2
* Error messages should not have a trailing period.nicm2015-08-281-2/+2
* Add bell-action "other" to pass through bells in all windows except thenicm2015-05-121-4/+9
* Convert clients list into a TAILQ.nicm2015-04-241-17/+9
* Change the windows array into an RB tree and fix some places where wenicm2015-04-221-16/+12
* Fix some format specifier nits, from Ben Boeckel.nicm2015-03-311-4/+4
* Remove the monitor-content option and associated bits and bobs. It'snicm2014-04-171-52/+5
* Use the same logic for bell with and without visual-bell, from Filipnicm2014-04-021-3/+4
* Do not need to call winlink_find_by_window, from Filip Moc.nicm2014-02-141-13/+8
* Add various checks to turn off bits that can't work in control modenicm2013-03-211-3/+3
* Fix BELL_NONE which had been broken in some code reorganisation or othernicm2012-10-251-2/+4
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-2/+3
* Clear flags across all sessions, from Thomas Adam.nicm2012-07-081-4/+9
* Tidy up bell code, from Thomas Adam.nicm2012-06-181-36/+15
* Only hide flags on the current window when the session is attached, fromnicm2012-01-211-6/+8
* Add a tty_bell wrapper function, from Dylan Alex Simon.nicm2011-08-241-4/+4
* Add an option to trigger the terminal bell when there is an alert, fromnicm2011-07-031-1/+23
* Unused declaration.nicm2011-01-261-2/+1
* Store sessions in an RB tree by name rather than a list, this is tidiernicm2010-12-211-6/+3
* Add an option to alert (monitor) for silence (lack of activity) in anicm2010-12-061-2/+53
* Change the way backoff works. Instead of stopping reading from the ptynicm2010-08-111-37/+1
* Don't return if in the current window since we may want to report a bellnicm2010-07-191-5/+3
* Having a list of winlinks->alerts for each session is stupid, just storenicm2010-06-211-32/+31
* copy mode uses the real screen as backing and if it is updated while copying,nicm2010-02-191-2/+4
* Massive spaces->tabs and trailing whitespace cleanup, hopefully for the lastnicm2009-12-031-9/+9
* Destroy panes immediately rather than checking them all every loop.nicm2009-11-131-63/+1
* Don't try enable/disable the event if the window pane is dead (fd == -1), asnicm2009-11-061-5/+7
* Change window name change to use a timer event rather than a gettimeofday()nicm2009-11-041-3/+1
* Convert the window pane (pty master side) fd over to use a bufferevent.nicm2009-11-041-48/+8
* Switch window pane pipe redirect fd over to a bufferevent.nicm2009-11-041-19/+1
* Switch tty fds over to a bufferevent.nicm2009-11-041-2/+3
* A couple of minor cosmetic changes.nicm2009-11-041-2/+2
* Initial changes to move tmux to libevent.nicm2009-11-041-7/+12
* Don't backoff based on suspended or deda clients as they are always likely tonicm2009-11-041-1/+3
* If any client currently displaying a window pane has more than 1 KB of outputnicm2009-10-281-2/+27
* Move the poll registration functions into the server-*.c files.nicm2009-10-271-1/+34
* Split the server code handling clients, jobs and windows off into separatenicm2009-10-221-0/+281