aboutsummaryrefslogtreecommitdiff
path: root/tty.c
Commit message (Collapse)AuthorAge
* Merge branch 'obsd-master'Thomas Adam2014-04-30
|\
| * specifying ECHOCTL once is enoughjsg2014-04-25
| | | | | | | | ok nicm@
* | Merge branch 'obsd-master'Thomas Adam2014-04-23
|\| | | | | | | | | | | | | Conflicts: Makefile tmux.1 window.c
| * Some more long lines.nicm2014-04-17
| |
| * Wrap some long lines.nicm2014-04-17
| |
* | Merge branch 'obsd-master'Thomas Adam2014-04-05
|\| | | | | | | | | | | Conflicts: Makefile tty-keys.c
| * Change terminal-overrides to a server option (now that we have them), itnicm2014-02-23
| | | | | | | | doesn't make much sense as a session option.
* | Merge branch 'obsd-master'Thomas Adam2014-02-16
|\| | | | | | | | | | | Conflicts: tmux.1 tmux.c
| * If the terminfo entry has colors#256, assume that setaf and setab worknicm2014-02-14
| | | | | | | | | | | | | | and use them for the 256 colour set. If the terminfo entry doesn't have colors#256 and the user gives -2 to the client, use a \033[38;5;Xm sequence as before. Should allow fbterm to work with it's weird setaf and setab.
* | Merge branch 'obsd-master'Thomas Adam2014-01-31
|\| | | | | | | | | | | | | Conflicts: Makefile cmd-server-info.c cmd-start-server.c
| * Allow replacing each of the many sets of separate foo-{fg,bg,attr}nicm2014-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | options with a single foo-style option. For example: set -g status-fg yellow set -g status-bg red set -g status-attr blink Becomes: set -g status-style fg=yellow,bg=red,blink The -a flag to set can be used to add to rather than replace a style. So: set -g status-bg red Becomes: set -ag status-style bg=red Currently this is fully backwards compatible (all *-{fg,bg,attr} options remain) but the plan is to deprecate them over time. From Tiago Cunha.
* | Merge branch 'obsd-master'Thomas Adam2013-11-14
|\|
| * Don't turn on modifyOtherKeys by default, it is annoying if tmux isnicm2013-10-20
| | | | | | | | | | killed and it's left on and we can't turn it on and off like we do for attributes. It's not hard to enable in .Xresources or .Xdefaults anyway.
| * Focus events can cause trouble if left on and they can't be turned offNicholas Marriott2013-06-23
| | | | | | | | | | during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off.
* | Focus events can cause trouble if left on and they can't be turned offNicholas Marriott2013-06-28
| | | | | | | | | | during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off.
* | Merge branch 'obsd-master'Thomas Adam2013-06-13
|\|
| * revert r1.156 "Add support for focus notifications when tmux pane changes"Stuart Henderson2013-06-11
| | | | | | | | | | 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.
| * The actual terminfo entries we ended up with for cursor changes are Cs,Nicholas Marriott2013-06-02
| | | | | | | | | | Ce, Ss and Se (not Cc, Ce, Cs, Csr). So use and document these instead of the ones we were using earlier.
* | Merge branch 'obsd-master'Thomas Adam2013-04-13
|\| | | | | | | | | Conflicts: tmux.c
| * Send an SGR0 after turning on modifyOtherKeys to fix Terminal.app whichNicholas Marriott2013-04-11
| | | | | | | | | | treats \033[>4;1m and \033[4;1m (bold+underline). Reported & tested by otto@.
| * Remove tmux's (already minimal) 88 colour support. Such terminals areNicholas Marriott2013-03-27
| | | | | | | | few and unnecessary.
| * Handle focus events from the terminal, from Aaron Jensen.Nicholas Marriott2013-03-24
| |
| * Use tty_raw on stop, not tty_puts.Nicholas Marriott2013-03-22
| |
| * Correctly handle UTF8 mouse option being toggled, from Egmont Koblinger.Nicholas Marriott2013-03-22
| |
| * Include the \033 in the key tree and adjust key matching for this change.Nicholas Marriott2013-03-21
| |
| * Tidy by splitting default key tables into two.Nicholas Marriott2013-03-21
| |
* | Handle focus events from the terminal, from Aaron Jensen.Nicholas Marriott2013-02-23
| |
* | Add support for focus notifications when tmux pane changes, based on work byNicholas Marriott2013-02-22
| | | | | | | | Aaron Jensen.
* | Use tty_raw on stop, not tty_puts.Nicholas Marriott2013-02-18
| |
* | Correctly turn handle UTF8 mouse option being toggled, from Egmont Koblinger.Nicholas Marriott2013-02-18
| |
* | Support the latest theory for mouse input, this is enabled/disabled with SM/RMNicholas Marriott2013-02-18
| | | | | | | | | | 1006 and is similar in style to SGR input: \033[<b;x;yM or \033[b;x;ym. From Egmont Koblinger.
* | No more lint means no more ARGSUSED.Nicholas Marriott2013-02-17
| |
* | In terminals with XT, turn on modifyOtherKeys=1 with the escape sequence andNicholas Marriott2013-02-17
| | | | | | | | handle the most common set. Pass them through if xterm-keys is on.
* | I strongly suspect it is possible for tmux to block on detach in tty_raw, soNicholas Marriott2013-02-17
| | | | | | | | | | make the fd blocking again much later and have tty_raw just retry the write a few times.
* | Include the \033 in the key tree and adjust key matching for this change.Nicholas Marriott2013-02-16
| |
* | Tidy by splitting default key tables into two.Nicholas Marriott2013-02-15
| |
* | Merge branch 'obsd-master'Thomas Adam2013-01-30
|\| | | | | | | | | | | Conflicts: Makefile grid-utf8.c
| * 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).
* | Merge branch 'obsd-master'Thomas Adam2013-01-17
|\|
| * Implement ECH (erase character, CSI X). Reported by Christian Neukirchen.Nicholas Marriott2013-01-15
| |
* | Merge branch 'obsd-master'Thomas Adam2012-11-22
|\| | | | | | | Sync from OpenBSD.
| * Put helper function back, will be needed in a bit.Nicholas Marriott2012-11-22
| |
* | Merge branch 'obsd-master'Thomas Adam2012-10-01
|\|
| * Do not test client flags against TTY_FREEZE bit, reported by Tom Ryder.Nicholas Marriott2012-09-29
| |
* | Merge branch 'obsd-master'Thomas Adam2012-09-15
|\| | | | | | | Sync from OpenBSD.
| * We can't tell what the terminal has done with a DCS string, so reset theNicholas Marriott2012-09-05
| | | | | | | | cursor and attributes afterwards.
| * Remove xterm CRA support - support is patchy and it will be done betterNicholas Marriott2012-09-03
| | | | | | | | using margins.
| * Tidy up tty_write, from Sean Estabrooks.Nicholas Marriott2012-08-14
| |
| * xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott2012-07-10
| |
| * Remove a couple of unused variables from redbrain at gcc dot gnu dot org.Nicholas Marriott2012-06-20
| |