commit | 79e30daeae1d49a1cf1dc4618edf1ec82804a80c | [log] [download] |
---|---|---|
author | Nicholas Marriott <nicm@openbsd.org> | Mon Mar 07 23:46:27 2011 +0000 |
committer | Nicholas Marriott <nicm@openbsd.org> | Mon Mar 07 23:46:27 2011 +0000 |
tree | 60ba3ed616a1c1d247a4af715dc27ef8a2d22e76 | |
parent | d5ed5fb08ff83a2cc38292b3eb0addab21ce6282 [diff] |
Support passing through escape sequences to the underlying terminal by using DCS with a "tmux;" prefix. Escape characters in the sequences must be doubled. For example: $ printf '\033Ptmux;\033\033]12;red\007\033\\' Will pass \033]12;red\007 to the terminal (and change the cursor colour in xterm). From Kevin Goodsell.