Make the regex for commenting settings more robust
This commit is contained in:
parent
b25ea9c863
commit
15e0b42f04
@ -67,7 +67,7 @@ mark2_background
|
|||||||
mark3_foreground
|
mark3_foreground
|
||||||
mark3_background
|
mark3_background
|
||||||
'''.splitlines()))
|
'''.splitlines()))
|
||||||
pat = f'^({"|".join(color_conf_items)})'
|
pat = fr'^\s*({"|".join(color_conf_items)})\b'
|
||||||
return re.sub(pat, r'# \1', nraw, flags=re.MULTILINE)
|
return re.sub(pat, r'# \1', nraw, flags=re.MULTILINE)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user