diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-05-22 16:25:02 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-05-22 16:25:02 +0000 |
commit | 719755574d4c4a5af1b255cb709c9ce8ee62f7ac (patch) | |
tree | 03810384ca0e94bbe93d9185ae77a1e8578c7be6 /options-table.c | |
parent | 89f35125b4eb5c032f57e8acb70274b77e887f0b (diff) | |
download | rtmux-719755574d4c4a5af1b255cb709c9ce8ee62f7ac.tar.gz rtmux-719755574d4c4a5af1b255cb709c9ce8ee62f7ac.tar.bz2 rtmux-719755574d4c4a5af1b255cb709c9ce8ee62f7ac.zip |
Sync OpenBSD patchset 915:
Support xterm(1) cursor colour change sequences through terminfo(5) Cc
(set) and Cr (reset) extensions. Originally by Sean Estabrooks, tweaked
by me and Ailin Nemui.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/options-table.c b/options-table.c index c068cc48..407ab6c1 100644 --- a/options-table.c +++ b/options-table.c @@ -1,4 +1,4 @@ -/* $Id: options-table.c,v 1.10 2011-05-22 16:23:07 tcunha Exp $ */ +/* $Id: options-table.c,v 1.11 2011-05-22 16:25:02 tcunha Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -365,13 +365,14 @@ const struct options_table_entry session_options_table[] = { { .name = "terminal-overrides", .type = OPTIONS_TABLE_STRING, .default_str = "*88col*:colors=88,*256col*:colors=256" - ",xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007" + ",xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007" + ":Cc=\\E]12;%p1%s\\007:Cr=\\E]112\\007" }, { .name = "update-environment", .type = OPTIONS_TABLE_STRING, .default_str = "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID " - "SSH_CONNECTION WINDOWID XAUTHORITY" + "SSH_CONNECTION WINDOWID XAUTHORITY" }, |