diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-03-03 16:20:13 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-03-03 16:20:13 +1100 |
| commit | 39e5ab295b7e898316c15dcc52717528dc2a52b0 (patch) | |
| tree | 6d9525805cb1775c61e556ed5b6014406ef5b509 | |
| parent | 9dede6dd61584b1e3bc6a92d022f2ad2b88e873a (diff) | |
sequences: Fix terminal highlight. Closes #190
| -rw-r--r-- | pywal/sequences.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py index a354891..1b2fce5 100644 --- a/pywal/sequences.py +++ b/pywal/sequences.py @@ -52,7 +52,8 @@ def create_sequences(colors): set_special(11, colors["special"]["background"], "h"), set_special(12, colors["colors"]["color1"], "l"), set_special(13, colors["special"]["foreground"], "l"), - set_special(19, colors["special"]["foreground"], "l")]) + set_special(17, colors["special"]["foreground"], "l"), + set_special(19, colors["special"]["background"], "l")]) # This escape sequence doesn't work in VTE terminals and their parsing of # unknown sequences is garbage so we need to use some escape sequence |
