mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
[bobthefish] Use consistent sed delimiters.
This commit is contained in:
parent
83f5e52a0e
commit
340a293517
@ -81,7 +81,7 @@ function __bobthefish_git_branch -d 'Get the current git branch (or commitish)'
|
|||||||
set -l branch (command git show-ref --head -s --abbrev | head -n1 ^/dev/null)
|
set -l branch (command git show-ref --head -s --abbrev | head -n1 ^/dev/null)
|
||||||
set ref "$__bobthefish_detached_glyph $branch"
|
set ref "$__bobthefish_detached_glyph $branch"
|
||||||
end
|
end
|
||||||
echo $ref | sed "s-refs/heads/-$__bobthefish_branch_glyph -"
|
echo $ref | sed "s#refs/heads/#$__bobthefish_branch_glyph #"
|
||||||
end
|
end
|
||||||
|
|
||||||
function __bobthefish_hg_branch -d 'Get the current hg branch'
|
function __bobthefish_hg_branch -d 'Get the current hg branch'
|
||||||
@ -91,7 +91,7 @@ function __bobthefish_hg_branch -d 'Get the current hg branch'
|
|||||||
end
|
end
|
||||||
|
|
||||||
function __bobthefish_pretty_parent -d 'Print a parent directory, shortened to fit the prompt'
|
function __bobthefish_pretty_parent -d 'Print a parent directory, shortened to fit the prompt'
|
||||||
echo -n (dirname $argv[1]) | sed -e 's|/private||' -e "s|^$HOME|~|" -e 's-/\(\.\{0,1\}[^/]\)\([^/]*\)-/\1-g' -e 's|/$||'
|
echo -n (dirname $argv[1]) | sed -e 's#/private##' -e "s#^$HOME#~#" -e 's#/\(\.\{0,1\}[^/]\)\([^/]*\)#/\1#g' -e 's#/$##'
|
||||||
end
|
end
|
||||||
|
|
||||||
function __bobthefish_git_project_dir -d 'Print the current git project base directory'
|
function __bobthefish_git_project_dir -d 'Print the current git project base directory'
|
||||||
@ -103,7 +103,7 @@ function __bobthefish_hg_project_dir -d 'Print the current hg project base direc
|
|||||||
end
|
end
|
||||||
|
|
||||||
function __bobthefish_project_pwd -d 'Print the working directory relative to project root'
|
function __bobthefish_project_pwd -d 'Print the working directory relative to project root'
|
||||||
echo "$PWD" | sed -e "s*$argv[1]**g" -e 's*^/**'
|
echo "$PWD" | sed -e "s#$argv[1]##g" -e 's#^/##'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user