mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-02-13 16:59:48 +01:00
sequences: move things around
This commit is contained in:
parent
38918d0ce8
commit
b3596e65dd
@ -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"]))
|
||||
|
Loading…
Reference in New Issue
Block a user