mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-20 23:36:31 +08: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:
parent
bc693bd4e0
commit
c9caee37b4
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue
Block a user