mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-05 21:48:55 +01:00
sequences: Add missing args
This commit is contained in:
parent
dc2d5662cc
commit
a3339b3c49
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user