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

themes/gitstatus: Fix where it shows extra a space
pull/2/head
Bruno 11 years ago
commit ceeb4de367

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

Loading…
Cancel
Save