1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-08 00:26:18 +02:00
zsh/Functions/VCS_Info/VCS_INFO_set-branch-format
Daniel Shahaf c055c6464d unposted: vcs_info: Add Vim modelines
... for consistency with all other vcs_info function files.
2022-01-29 16:01:39 +00:00

25 lines
597 B
Bash

## vim:ft=zsh
#
# A function for calling the branch-format hook
#
# Return the value to use in REPLY
#
# Parameters:
readonly branch=$1
readonly revision=$2
#
[[ -n $rrn ]] || return 1
local -A hook_com
local branchformat
zstyle -s ":vcs_info:${vcs}:${usercontext}:${rrn}" branchformat branchformat || branchformat="%b:%r"
hook_com=( branch "${branch}" revision "${revision}" )
if VCS_INFO_hook 'set-branch-format' "${branchformat}"; then
zformat -f REPLY "${branchformat}" "b:${hook_com[branch]}" "r:${hook_com[revision]}"
else
REPLY=${hook_com[branch-replace]}
fi
hook_com=()
return 0