mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-29 18:51:15 -03:00
Fix fish_indent leaving colors set/messing up type
After the colorized syntax output in type -a foo, "foo is /usr/..." would also be colored. (or 'test' in fish_indent foo.fish; echo test). Make fish_indent reset the color when it's done.
This commit is contained in:
@@ -228,7 +228,7 @@ static std::string ansi_colorize(const wcstring &text, const std::vector<highlig
|
||||
}
|
||||
writech(text.at(i));
|
||||
}
|
||||
|
||||
set_color(rgb_color_t::normal(), rgb_color_t::normal());
|
||||
output_set_writer(saved);
|
||||
std::string result;
|
||||
result.swap(output_receiver);
|
||||
|
||||
Reference in New Issue
Block a user