mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
Merge pull request #75 from godfat/theme-git-status-fix
themes/gitstatus: Fix where it shows extra a space
This commit is contained in:
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)
|
||||
|
||||
echo -n (_remote_hostname) \
|
||||
$cwd $cyan(_git_status_symbol)(_git_branch_name)$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$normal'> '
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user