From 8aad53556dfc6aa969056a741c009c9f127c1f96 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Wed, 20 Aug 2014 18:40:14 -0700 Subject: [PATCH] Highlight pipe characters correctly According to `fish_config`'s colors page, the pipe operator `|` is supposed to be colored the same as a statement terminator. --- highlight.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/highlight.cpp b/highlight.cpp index 8145e5f30..287f1a3ba 100644 --- a/highlight.cpp +++ b/highlight.cpp @@ -1358,6 +1358,7 @@ const highlighter_t::color_array_t & highlighter_t::highlight() } break; + case parse_token_type_pipe: case parse_token_type_background: case parse_token_type_end: case symbol_optional_background: