# HG changeset patch # User Ludovic Chabant # Date 1581834052 28800 # Node ID 9df78191317597a8033b9d07b125c1cdbdee7dfb # Parent 91652f4b9752fc23a2cc41c7b7a816327071e350 Show mercurial fish prompt only if it's installed. diff -r 91652f4b9752 -r 9df781913175 fish/config.fish --- a/fish/config.fish Tue Jun 11 20:41:27 2019 -0700 +++ b/fish/config.fish Sat Feb 15 22:20:52 2020 -0800 @@ -87,6 +87,8 @@ if git branch >/dev/null 2>/dev/null printf '±' ; return end + end + if set -q __local_has_hg if hg root >/dev/null 2>/dev/null printf '☿' ; return end