mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
Added hg repo status to robbyrussell example prompt
This commit is contained in:
parent
5638764bad
commit
c84cdcd00c
1 changed files with 45 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
||||||
# name: Robbyrussell
|
# name: Robbyrussell
|
||||||
# author: Bruno Ferreira Pinto
|
# author: Bruno Ferreira Pinto, Pawel Zubrycki
|
||||||
|
|
||||||
function fish_prompt
|
function fish_prompt
|
||||||
|
|
||||||
|
@ -8,10 +8,42 @@ function fish_prompt
|
||||||
function _git_branch_name
|
function _git_branch_name
|
||||||
echo (git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
|
echo (git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
|
||||||
end
|
end
|
||||||
|
|
||||||
function _is_git_dirty
|
function _is_git_dirty
|
||||||
echo (git status -s --ignore-submodules=dirty ^/dev/null)
|
echo (git status -s --ignore-submodules=dirty ^/dev/null)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function _is_git_repo
|
||||||
|
git status -s >/dev/null ^/dev/null
|
||||||
|
end
|
||||||
|
|
||||||
|
function _hg_branch_name
|
||||||
|
echo (hg branch ^/dev/null)
|
||||||
|
end
|
||||||
|
|
||||||
|
function _is_hg_dirty
|
||||||
|
echo (hg status -mard ^/dev/null)
|
||||||
|
end
|
||||||
|
|
||||||
|
function _is_hg_repo
|
||||||
|
hg summary >/dev/null ^/dev/null
|
||||||
|
end
|
||||||
|
|
||||||
|
function _repo_branch_name
|
||||||
|
eval "_$argv[1]_branch_name"
|
||||||
|
end
|
||||||
|
|
||||||
|
function _is_repo_dirty
|
||||||
|
eval "_is_$argv[1]_dirty"
|
||||||
|
end
|
||||||
|
|
||||||
|
function _repo_type
|
||||||
|
if _is_hg_repo
|
||||||
|
echo 'hg'
|
||||||
|
else if _is_git_repo
|
||||||
|
echo 'git'
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
set -l cyan (set_color -o cyan)
|
set -l cyan (set_color -o cyan)
|
||||||
|
@ -21,17 +53,22 @@ function fish_prompt
|
||||||
set -l normal (set_color normal)
|
set -l normal (set_color normal)
|
||||||
|
|
||||||
set -l arrow "$red➜ "
|
set -l arrow "$red➜ "
|
||||||
|
if [ $USER = 'root' ]
|
||||||
|
set arrow "$red# "
|
||||||
|
end
|
||||||
|
|
||||||
set -l cwd $cyan(basename (prompt_pwd))
|
set -l cwd $cyan(basename (prompt_pwd))
|
||||||
|
|
||||||
if [ (_git_branch_name) ]
|
set -l repo_type (_repo_type)
|
||||||
set -l git_branch $red(_git_branch_name)
|
if [ $repo_type ]
|
||||||
set git_info "$blue git:($git_branch$blue)"
|
set -l repo_branch $red(_repo_branch_name $repo_type)
|
||||||
|
set repo_info "$blue $repo_type:($repo_branch$blue)"
|
||||||
|
|
||||||
if [ (_is_git_dirty) ]
|
if [ (_is_repo_dirty $repo_type) ]
|
||||||
set -l dirty "$yellow ✗"
|
set -l dirty "$yellow ✗"
|
||||||
set git_info "$git_info$dirty"
|
set repo_info "$repo_info$dirty"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
echo -n -s $arrow ' '$cwd $git_info $normal ' '
|
echo -n -s $arrow ' '$cwd $repo_info $normal ' '
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue