mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-31 03:51:14 -03:00
fixup! Fix variable names
Missed an underscore, sorry!
This commit is contained in:
@@ -738,7 +738,7 @@ class FishConfigHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
|
||||
"Sets a color for a fish color name, like 'autosuggestion'"
|
||||
if not color:
|
||||
color = 'normal'
|
||||
varname = 'fish_color' + name
|
||||
varname = 'fish_color_' + name
|
||||
# If the name already starts with "fish_", use it as the varname
|
||||
# This is needed for 'fish_pager_color' vars.
|
||||
if name.startswith('fish_'):
|
||||
|
||||
Reference in New Issue
Block a user