Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add aixterm high-intensity non-bold SGR codes.
  • Loading branch information
FireyFly committed Feb 28, 2014
1 parent 8caee16 commit 3b52af7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions terminal.cpp
Expand Up @@ -788,6 +788,16 @@ void Terminal::ansiSequence(const QString& seq)
}
}

// high-intensity regular-weight extension (nonstandard)
foreach(int p, params) {
if(p >= 90 && p<= 97) {
iTermAttribs.currentFgColor = p-90+8;
}
if(p >= 100 && p<= 107) {
iTermAttribs.currentBgColor = p-100+8;
}
}

if(params.contains(39))
iTermAttribs.currentFgColor = defaultFgColor;
if(params.contains(49))
Expand Down

0 comments on commit 3b52af7

Please sign in to comment.