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.
This commit is contained in:
Kevin Ballard 2014-08-20 18:40:14 -07:00 committed by ridiculousfish
parent 61ce9db4ba
commit 8aad53556d

View file

@ -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: