瀏覽代碼

Display status of error at right prompt side

DricomDragon 5 年之前
父節點
當前提交
659bda17b6
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. 10 0
      Install/Templates/fish/functions/fish_right_prompt.fish

+ 10 - 0
Install/Templates/fish/functions/fish_right_prompt.fish

@@ -0,0 +1,10 @@
+function fish_right_prompt --description 'Write out the prompt on the right'
+	set -l last_status $status
+
+    if not test $last_status -eq 0
+        set_color $fish_color_error
+		echo $last_status
+    end
+
+    set_color normal
+end