Update for liquidprompt v2.0

In v2.0 (the current version) of liquidprompt, the function `_lp_escape()` was renamed to `__lp_escape()`.
pull/2203/head
cdoenges 2023-04-01 13:34:19 +02:00 committed by GitHub
parent e38696a0ac
commit 9430177c83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ _lp_git_branch()
# Recent versions of Git support the --short option for symbolic-ref, but
# not 1.7.9 (Ubuntu 12.04)
if branch="$(\git symbolic-ref -q HEAD)"; then
_lp_escape "$(\git rev-parse --short=5 -q HEAD 2>/dev/null):${branch#refs/heads/}"
__lp_escape "$(\git rev-parse --short=5 -q HEAD 2>/dev/null):${branch#refs/heads/}"
else
# In detached head state, use commit instead
# No escape needed