Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make stderr redirection compatible with Fish 3.0. #1

Merged
merged 1 commit into from
Jan 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions fish_prompt.fish
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ function toggle_right_prompt -d "Toggle the right prompt of the syl20bnr theme"
end

function __syl20bnr_git_branch_name -d "Return the current branch name"
echo (command git symbolic-ref HEAD ^/dev/null | sed -e 's|^refs/heads/||')
echo (command git symbolic-ref HEAD 2> /dev/null | sed -e 's|^refs/heads/||')
end

function __syl20bnr_git_repo_name -d "Return the current repository name"
echo (command basename (git rev-parse --show-toplevel ^/dev/null))
echo (command basename (git rev-parse --show-toplevel 2> /dev/null))
end

function __syl20bnr_git_repo_base -d "Return the current repository name"
echo (command git rev-parse --show-toplevel ^/dev/null)
echo (command git rev-parse --show-toplevel 2> /dev/null)
end

function __syl20bnr_git_status -d "git status command"
Expand Down