Merge pull request #75 from godfat/theme-git-status-fix

themes/gitstatus: Fix where it shows extra a space
This commit is contained in:
Bruno 2013-10-28 13:25:40 -07:00
commit ceeb4de367

View File

@ -20,7 +20,7 @@ function _git_status_symbol
end end
function _remote_hostname function _remote_hostname
if test $SSH_CONNECTION if test -n "$SSH_CONNECTION"
echo (whoami)@(hostname) echo (whoami)@(hostname)
end end
end end
@ -28,8 +28,13 @@ end
function fish_prompt function fish_prompt
set -l cyan (set_color cyan) set -l cyan (set_color cyan)
set -l normal (set_color normal) set -l normal (set_color normal)
set -l cwd (set_color $fish_color_cwd)(prompt_pwd)
echo -n (_remote_hostname) \ set -l cwd (set_color $fish_color_cwd)(prompt_pwd)
$cwd $cyan(_git_status_symbol)(_git_branch_name)$normal'> ' set -l git_status (_git_status_symbol)(_git_branch_name)
if test -n "$git_status"
set git_status " $git_status"
end
echo -n (_remote_hostname) $cwd$cyan$git_status$normal'> '
end end