Commit ceeb4de3 authored by Bruno's avatar Bruno

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

themes/gitstatus: Fix where it shows extra a space
parents 0f3aff49 10f36245
......@@ -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
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