]>
git.madduck.net Git - etc/zsh.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@ git. madduck. net .
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
a6e7465 )
{
emulate -L zsh
# return the type of the closest repository in the path hierarchy
{
emulate -L zsh
# return the type of the closest repository in the path hierarchy
+ # unless we're on a network filesystem:
+ if __on_networkfs; then
+ echo netfs
+ return
+ fi
local dir
while true; do
[ -d ${dir}.git ] && echo git && break
local dir
while true; do
[ -d ${dir}.git ] && echo git && break
;;
*)
case "$repotype" in
;;
*)
case "$repotype" in
*) warn "$repotype repositories not (yet) supported in the prompt";;
esac
local MAXLEN MINLEN
*) warn "$repotype repositories not (yet) supported in the prompt";;
esac
local MAXLEN MINLEN
_update_vcs_prompt_vars_if_vcs_ran() {
local vcs="$(__vcs_get_repo_type)"
_update_vcs_prompt_vars_if_vcs_ran() {
local vcs="$(__vcs_get_repo_type)"
- case "$(history $(($HISTCMD - 1)))" in
+ case "$vcs/$ (history $(($HISTCMD - 1)))" in
# $vcs appeared in last command, so be sure to update
# $vcs appeared in last command, so be sure to update
- *${vcs}*) __vcs_set_prompt_variables "$vcs"
+ NONE/*) :;;
+ netfs/*) :;;
+ */*${vcs}*) __vcs_set_prompt_variables "$vcs"
esac
}
add-zsh-hook precmd _update_vcs_prompt_vars_if_vcs_ran
esac
}
add-zsh-hook precmd _update_vcs_prompt_vars_if_vcs_ran