summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-31 14:56:12 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-31 14:56:12 +1000
commitb3596e65ddc37daccb28d6d133e8c1cdb1c476b3 (patch)
tree9ca450f3d6f9e752ad7f9ba831b8f462aa266d90
parent38918d0ce8e11800bd4b43ae084e9b6a066f0fec (diff)
sequences: move things around
-rw-r--r--pywal/sequences.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py
index 9e7a3dc..cf5aae7 100644
--- a/pywal/sequences.py
+++ b/pywal/sequences.py
@@ -34,6 +34,10 @@ def create_sequences(colors, vte):
sequences = [set_color(num, col) for num, col in
enumerate(colors["colors"].values())]
+ # Set a blank color that isn't affected by bold highlighting.
+ # Used in wal.vim's airline theme.
+ sequences.append(set_color(66, colors["special"]["background"]))
+
# Special colors.
# Source: https://goo.gl/KcoQgP
# 10 = foreground, 11 = background, 12 = cursor foregound
@@ -43,10 +47,6 @@ def create_sequences(colors, vte):
sequences.append(set_special(12, colors["special"]["cursor"], "l"))
sequences.append(set_special(13, colors["special"]["cursor"], "l"))
- # Set a blank color that isn't affected by bold highlighting.
- # Used in wal.vim's airline theme.
- sequences.append(set_color(66, colors["special"]["background"]))
-
# This escape sequence doesn"t work in VTE terminals.
if not vte:
sequences.append(set_special(708, colors["special"]["background"]))