diff --git a/share/functions/fish_hg_prompt.fish b/share/functions/fish_hg_prompt.fish index 584695f54..93c4d102b 100644 --- a/share/functions/fish_hg_prompt.fish +++ b/share/functions/fish_hg_prompt.fish @@ -38,9 +38,8 @@ function fish_hg_prompt --description 'Write out the hg prompt' echo -n '|' - # For some reason, "-q" still prints the same output, but ~20% faster. # Disabling color and pager is always a good idea. - set -l repo_status (hg status -q --color never --pager never | string sub -l 2 | sort -u) + set -l repo_status (hg status --color never --pager never | string sub -l 2 | sort -u) # Show nice color for a clean repo if test -z "$repo_status"