sample_prompts/sorin: Correct git_action function name

We renamed this, and apparently missed it.

[ci skip]
This commit is contained in:
Fabian Homborg
2018-12-19 09:34:57 +01:00
parent 082450b1e7
commit 50fbc36b73

View File

@@ -41,7 +41,7 @@ function fish_right_prompt
# Get the current action ("merge", "rebase", etc.)
# and if there's one get the current commit hash too.
set -l commit ''
if set -l action (__fish_git_action "$git_dir")
if set -l action (fish_print_git_action "$git_dir")
set commit (command git rev-parse HEAD 2> /dev/null | string sub -l 7)
end