mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-31 20:31:19 -03:00
web_config: Use None as default for underline style
Underline is no more a boolean and should be one of the accepted style,
or None. By keeping False as default value, web_config was generating
wrong --underline=False settings
Part of #11861
(cherry picked from commit c884c08257)
This commit is contained in:
committed by
Johannes Altmanninger
parent
47396e78ce
commit
8dd90085b6
@@ -229,7 +229,7 @@ def parse_color(color_str):
|
||||
background_color = ""
|
||||
underline_color = ""
|
||||
bold = False
|
||||
underline = False
|
||||
underline = None
|
||||
italics = False
|
||||
dim = False
|
||||
reverse = False
|
||||
|
||||
Reference in New Issue
Block a user