Revert "history.fish: colorize with fish_indent -d0"

This reverts commit 7ebef0a396 in order to
make merging the changes that drop fish_indent easier and history more
understandable.
This commit is contained in:
David Adam 2018-12-14 13:09:00 +08:00
parent 40de04cc6c
commit 5959114103

View File

@ -104,7 +104,7 @@ function history --description "display or manipulate interactive command histor
set -q skip_indent[1] # --show-time=FORMAT set, arbitrary output may not be valid fish script
and builtin history search $search_mode $show_time $max_count $_flag_case_sensitive $_flag_reverse $_flag_null -- $argv | $pager
or builtin history search $search_mode $show_time $max_count $_flag_case_sensitive $_flag_reverse $_flag_null -- $argv | fish_indent -d0 --ansi | $pager
or builtin history search $search_mode $show_time $max_count $_flag_case_sensitive $_flag_reverse $_flag_null -- $argv | fish_indent --ansi | $pager
else
builtin history search $search_mode $show_time $max_count $_flag_case_sensitive $_flag_reverse $_flag_null -- $argv
end