From: Frank Terbeck Date: Fri, 29 Aug 2008 21:28:32 +0000 (+0200) Subject: zshrc: Adding support for monotone repositories to vcs_info() X-Git-Tag: 0.3.53~2 X-Git-Url: https://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=e89137e535aae3806887fbcc3c0539dfb3f0ee27 zshrc: Adding support for monotone repositories to vcs_info() --- diff --git a/debian/changelog b/debian/changelog index f4a3238..ce5f3b7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,8 +9,9 @@ grml-etc-core (0.3.53) unstable; urgency=low * zshrc: Give the user the opportunity to switch the vcs_info prompt off for certain version control systems. * zshrc: Adding support for darcs repositories to vcs_info() + * zshrc: Adding support for monotone repositories to vcs_info() - -- Frank Terbeck Fri, 29 Aug 2008 22:19:38 +0200 + -- Frank Terbeck Fri, 29 Aug 2008 23:19:13 +0200 grml-etc-core (0.3.52) unstable; urgency=low diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index cb261bf..23f653b 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -1041,7 +1041,7 @@ fi # First, the context in which we are working: # :vcs_info: # ...where is one of: -# - git, git-svn, hg, darcs, bzr, svn or svk +# - git, git-svn, hg, darcs, bzr, mtn, svn or svk # # You can of course use ':vcs_info:*' to match all VCSs at once. # @@ -1242,6 +1242,16 @@ VCS_INFO_hg_get_data () { # {{{ printf '%s' ${msg} } # }}} +VCS_INFO_mtn_get_data () { # {{{ + local msg mtnbranch mtnbase + + mtnbase=${vcs_comm[basedir]} + mtnbranch=$(mtn status | awk '/Current branch:/{ sub("Current branch: ", ""); print }') + msg=$(VCS_INFO_format) + zformat -f msg "${msg}" "a:" "b:${mtnbranch}" "s:${vcs}" "r:${mtnbase:t}" "R:${mtnbase}" + printf '%s' ${msg} +} +# }}} VCS_INFO_svk_get_data () { # {{{ local msg svkbranch svkbase @@ -1347,6 +1357,13 @@ VCS_INFO_hg_detect() { return $? } +VCS_INFO_mtn_detect() { + check_com -c mtn || return 1 + vcs_comm[detect_need_file]=revision + VCS_INFO_detect_by_dir '_MTN' + return $? +} + VCS_INFO_svk_detect() { local basedir @@ -1377,7 +1394,7 @@ vcs_info () { # {{{ zstyle -T ":vcs_info:${vcs}" "enable" || return 0 zstyle -a ":vcs_info:${vcs}" "disable" disabled - VCSs=(git hg bzr darcs svn svk) + VCSs=(git hg bzr darcs mtn svn svk) (( found = 0 )) for vcs in ${VCSs} ; do