aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_pager.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-06 20:14:19 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-06 20:14:19 -0800
commit382ffe9b6af14a8a42a4dfc4f93338a956ea9c27 (patch)
tree3d3ed84253003884c4cd80992a4fde0c3bde0851 /fish_pager.cpp
parente5b34d5cd56081c6c29950f61de514f586e62643 (diff)
Added autosuggestion color variable fish_color_autosuggestion
Fixed that nasty bug where fish would apply a color to both the foreground and background (yuck)
Diffstat (limited to 'fish_pager.cpp')
-rw-r--r--fish_pager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fish_pager.cpp b/fish_pager.cpp
index 4f9c8223..c05ae749 100644
--- a/fish_pager.cpp
+++ b/fish_pager.cpp
@@ -221,7 +221,7 @@ static int get_color( int highlight )
return FISH_COLOR_NORMAL;
}
- return output_color_code( val );
+ return output_color_code( val, false );
}
/**