Commit 8d119cf6 authored by James Hillyerd's avatar James Hillyerd Committed by Bruno Pinto

Missing semicolon after begin statement

parent 55446539
...@@ -43,7 +43,7 @@ function fish_prompt ...@@ -43,7 +43,7 @@ function fish_prompt
echo -n $red'┌'$cyan$USER$white'@'$cyan$__fish_prompt_hostname $gray(prompt_pwd)$normal echo -n $red'┌'$cyan$USER$white'@'$cyan$__fish_prompt_hostname $gray(prompt_pwd)$normal
__fish_git_prompt __fish_git_prompt
# Check for gwip; does last commit log contain --wip--? # Check for gwip; does last commit log contain --wip--?
if begin git log -n 1 ^/dev/null | grep -qc "\-\-wip\-\-"; end if begin; git log -n 1 ^/dev/null | grep -qc "\-\-wip\-\-"; end
echo -n $brwhite' WIP!'$normal echo -n $brwhite' WIP!'$normal
end end
echo echo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment