blob: a0324533ad229e9b309415c1dec4f0a2dc06055d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
## vim:ft=zsh
## codeville support by: Frank Terbeck <ft@bewatermyfriend.org>
## Distributed under the same BSD-ish license as zsh itself.
setopt localoptions NO_shwordsplit
[[ $1 == '--flavours' ]] && return 1
VCS_INFO_check_com ${vcs_comm[cmd]} || return 1
vcs_comm[detect_need_file]=format
VCS_INFO_bydir_detect '.cdv'
return $?
|