summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tty.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Focus off needs to be sent with tty_raw, reported by Geoff Nixon.nicm2015-01-301-2/+2
* Support blinking cursor mode, both the xterm CSI ?12 h/l and (thenicm2015-01-201-5/+9
* Remove support for the continuous reporting "any" mouse mode which nevernicm2014-08-091-7/+3
* specifying ECHOCTL once is enoughjsg2014-04-251-2/+2
* Some more long lines.nicm2014-04-171-3/+3
* Wrap some long lines.nicm2014-04-171-2/+3
* Change terminal-overrides to a server option (now that we have them), itnicm2014-02-231-3/+3
* If the terminfo entry has colors#256, assume that setaf and setab worknicm2014-02-141-7/+23
* Allow replacing each of the many sets of separate foo-{fg,bg,attr}nicm2014-01-281-3/+2
* Don't turn on modifyOtherKeys by default, it is annoying if tmux isnicm2013-10-201-3/+2
* Focus events can cause trouble if left on and they can't be turned offnicm2013-06-231-3/+13
* revert r1.156 "Add support for focus notifications when tmux pane changes"sthen2013-06-111-3/+3
* The actual terminfo entries we ended up with for cursor changes are Cs,nicm2013-06-021-10/+10
* Send an SGR0 after turning on modifyOtherKeys to fix Terminal.app whichnicm2013-04-111-3/+3
* Remove tmux's (already minimal) 88 colour support. Such terminals arenicm2013-03-271-29/+5
* Handle focus events from the terminal, from Aaron Jensen.nicm2013-03-241-3/+3
* Add support for focus notifications when tmux pane changes, based onnicm2013-03-241-2/+2
* Use tty_raw on stop, not tty_puts.nicm2013-03-221-2/+2
* Correctly handle UTF8 mouse option being toggled, from Egmont Koblinger.nicm2013-03-221-2/+4
* Support the latest theory for mouse input, this is enabled/disabled withnicm2013-03-221-3/+14
* No more lint means no more ARGSUSED.nicm2013-03-221-3/+1
* In terminals with XT, turn on modifyOtherKeys=1 with the escape sequencenicm2013-03-221-2/+5
* I strongly suspect it is possible for tmux to block on detach innicm2013-03-221-4/+18
* Include the \033 in the key tree and adjust key matching for this change.nicm2013-03-211-2/+2
* Tidy by splitting default key tables into two.nicm2013-03-211-2/+2
* Rather than having two grids for each pane, one for ASCII and one fornicm2013-01-181-43/+27
* Implement ECH (erase character, CSI X). Reported by Christian Neukirchen.nicm2013-01-151-1/+18
* Put helper function back, will be needed in a bit.nicm2012-11-221-1/+9
* Instead of worrying about xterm version, send DA and read DEC servicenicm2012-11-221-10/+2
* Don't need to send DECSL on detaching now, the code using higher levelsnicm2012-11-221-4/+1
* Do not test client flags against TTY_FREEZE bit, reported by Tom Ryder.nicm2012-09-291-2/+4
* We can't tell what the terminal has done with a DCS string, so reset thenicm2012-09-051-1/+7
* Remove xterm CRA support - support is patchy and it will be done betternicm2012-09-031-59/+2
* Tidy up tty_write, from Sean Estabrooks.nicm2012-08-141-17/+10
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-6/+6
* Remove a couple of unused variables from redbrain at gcc dot gnu dot org.nicm2012-06-201-3/+1
* Store client in tty struct directly instead of using a callback functionnicm2012-05-221-2/+3
* Use tty_pane_full_width macro in some more places.nicm2012-05-221-5/+3
* If there are any terminals with insert mode but not ich1, they can gonicm2012-05-221-7/+2
* Move some common code to repeat spaces into a function.nicm2012-05-221-33/+23
* Tidy up by adding a macro for the pane being the full screen width, fromnicm2012-05-051-24/+13
* Missing ()s in macros.nicm2012-05-051-3/+3
* Pull CRA out into a separate function and add ERA, from Ailin Nemui.nicm2012-05-051-12/+43
* Add a simple form of output rate limiting by counting the number ofnicm2012-03-201-2/+2
* On xterm 271 and later, put the terminal into SCL 5 and use DECCRA fornicm2012-03-171-3/+42
* Break out termios initialization into a separate function, from Georgenicm2012-03-171-8/+15
* Do not clear to end of line if the line is full, fixes missing lastnicm2012-03-171-2/+2
* Use the region lower not the pane size to work out where the bottom linenicm2012-03-171-2/+2
* Tweak last fix to actually hit the right end of pane.nicm2012-03-171-2/+2
* Check event_initialized before event_del if event may not have been setnicm2012-03-171-2/+3