mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-18 15:21:16 +02:00
9 lines
255 B
Bash
9 lines
255 B
Bash
## vim:ft=zsh
|
|
## perforce support by: Phil Pennock
|
|
## Distributed under the same BSD-ish license as zsh itself.
|
|
|
|
[[ -n ${P4CONFIG} ]] || return 1
|
|
VCS_INFO_check_com p4 || return 1
|
|
vcs_comm[detect_need_file]="${P4CONFIG}"
|
|
VCS_INFO_bydir_detect .
|
|
return $?
|