diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-06-02 07:52:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-06-02 07:52:15 +0000 |
commit | 13441e8cb8b0ce68db3204a44bbdc004bee42a0f (patch) | |
tree | ae11f4eb9ef9aa9a7610abf5fdf81eec1a0c1118 /options-table.c | |
parent | c231381aa3a22340e787baaf78781d9b8ecd6a2c (diff) | |
download | rtmux-13441e8cb8b0ce68db3204a44bbdc004bee42a0f.tar.gz rtmux-13441e8cb8b0ce68db3204a44bbdc004bee42a0f.tar.bz2 rtmux-13441e8cb8b0ce68db3204a44bbdc004bee42a0f.zip |
The actual terminfo entries we ended up with for cursor changes are Cs,
Ce, Ss and Se (not Cc, Ce, Cs, Csr). So use and document these instead
of the ones we were using earlier.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c index c4ada1f2..c73842f7 100644 --- a/options-table.c +++ b/options-table.c @@ -416,8 +416,8 @@ const struct options_table_entry session_options_table[] = { .type = OPTIONS_TABLE_STRING, .default_str = "*256col*:colors=256" ",xterm*:XT:Ms=\\E]52;%p1%s;%p2%s\\007" - ":Cc=\\E]12;%p1%s\\007:Cr=\\E]112\\007" - ":Cs=\\E[%p1%d q:Csr=\\E[2 q,screen*:XT" + ":Cs=\\E]12;%p1%s\\007:Cr=\\E]112\\007" + ":Ss=\\E[%p1%d q:Se=\\E[2 q,screen*:XT" }, { .name = "update-environment", |