diff options
Diffstat (limited to 'Functions/VCS_Info/VCS_INFO_maxexports')
-rw-r--r-- | Functions/VCS_Info/VCS_INFO_maxexports | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Functions/VCS_Info/VCS_INFO_maxexports b/Functions/VCS_Info/VCS_INFO_maxexports new file mode 100644 index 000000000..ea952517f --- /dev/null +++ b/Functions/VCS_Info/VCS_INFO_maxexports @@ -0,0 +1,13 @@ +## vim:ft=zsh +## Written by Frank Terbeck <ft@bewatermyfriend.org> +## Distributed under the same BSD-ish license as zsh itself. + +setopt localoptions NO_shwordsplit + +zstyle -s ":vcs_info:${vcs}:${usercontext}:${rrn}" "max-exports" maxexports || maxexports=2 +if [[ ${maxexports} != <-> ]] || (( maxexports < 1 )); then + printf 'vcs_info(): expecting numeric arg >= 1 for max-exports (got %s).\n' ${maxexports} + printf 'Defaulting to 2.\n' + maxexports=2 +fi +return 0 |