summaryrefslogtreecommitdiff
path: root/pywal/sequences.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-30 23:11:52 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-30 23:11:52 +1000
commita3339b3c49745f4a45dc857c74c19fb1aab3a073 (patch)
tree022f48793083a1a8dbe3e4cd64be00d602c3bf04 /pywal/sequences.py
parentdc2d5662cc3c299b4a750af92367bdb89c50077d (diff)
sequences: Add missing args
Diffstat (limited to 'pywal/sequences.py')
-rw-r--r--pywal/sequences.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py
index 1deecf6..313b093 100644
--- a/pywal/sequences.py
+++ b/pywal/sequences.py
@@ -7,7 +7,7 @@ from .settings import CACHE_DIR, OS
from . import util
-def set_special(index, color, iterm_name):
+def set_special(index, color, iterm_name="g"):
"""Convert a hex color to a special sequence."""
alpha = util.Color.alpha_num
@@ -45,7 +45,7 @@ def create_sequences(colors, vte):
# 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"]))
+ sequences.append(set_color(66, colors["special"]["background"], "h"))
# This escape sequence doesn"t work in VTE terminals.
if not vte: