diff options
author | nicm <nicm> | 2017-01-24 20:05:15 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-24 20:05:15 +0000 |
commit | b77dd75b5717d3b95a97c7b60c9e054338d7d85e (patch) | |
tree | 63228719e87f44c569c7f8ba61838f87fc5517f5 /tmux.1 | |
parent | 16e43d6a42ea15893e77abb4efece5a965321522 (diff) | |
download | rtmux-b77dd75b5717d3b95a97c7b60c9e054338d7d85e.tar.gz rtmux-b77dd75b5717d3b95a97c7b60c9e054338d7d85e.tar.bz2 rtmux-b77dd75b5717d3b95a97c7b60c9e054338d7d85e.zip |
Convert terminal-overrides to an array option.
Diffstat (limited to 'tmux.1')
-rw-r--r-- | tmux.1 | 26 |
1 files changed, 10 insertions, 16 deletions
@@ -2495,12 +2495,12 @@ disallowedWindowOps: 20,21,SetXprop Or changing this property from the .Xr xterm 1 interactive menu when required. -.It Ic terminal-overrides Ar string -Contains a list of entries which override terminal descriptions read using -.Xr terminfo 5 . -.Ar string -is a comma-separated list of items each a colon-separated string made up of a -terminal type pattern (matched using +.It Ic terminal-overrides[] Ar string +Allow terminal descriptions read using +.Xr terminfo 5 +to be overriden. +Each entry is a colon-separated string made up of a terminal type pattern +(matched using .Xr fnmatch 3 ) and a set of .Em name=value @@ -2511,16 +2511,10 @@ For example, to set the .Xr terminfo 5 entry to .Ql \ee[H\ee[2J -for all terminal types and the -.Ql dch1 -entry to -.Ql \ee[P -for the -.Ql rxvt -terminal type, the option could be set to the string: -.Bd -literal -offset indent -"*:clear=\ee[H\ee[2J,rxvt:dch1=\ee[P" -.Ed +for all terminal types matching +.Ql rxvt* : +.Pp +.Dl "rxvt*:clear=\ee[H\ee[2J" .Pp The terminal entry value is passed through .Xr strunvis 3 |