Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Call git directly to bypass possible functions under the same name
- X-seq: zsh-workers 37883
- From: Valni <ttemplate223@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Call git directly to bypass possible functions under the same name
- Date: Thu, 4 Feb 2016 22:00:30 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=to:from:subject:message-id:date:user-agent:mime-version :content-type:content-transfer-encoding; bh=bft+P2RxPY65152NH1xg+NsSj3YhrQJRAQm0p5YsNrQ=; b=BsBeUfFxr8wMS+9pBASMqxB5idsvU9Ivfa7Y6JhhdqEAj79fT34WGWBgYbDvb93ZP+ 97O6u6+j+LKhdFtwDlp7gack1WyZubchv01lP0LPBvely92WOTP5xbG4XZNNJoL4e0o1 T8sl9hnGHdSayutPkSlYJGdBQYWoRfe01FsDijQByMQRIQr9ruzqawcZAMgK9br2zeJc i1HBmKIPzqMh6FJ0Qa2P1xiQeX6+TfQc9zU5YK89q+0sfbAb4XmsRkG5y3iwkPmY6pqG XvHn23MBOc0xW6OP59I16fVHlSyVMJ/i5RYvqeuiJNjyOk3xyFmAx0E4NbTDSkPysrCq KA0Q==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
Hopefully I have reached the right mailing list and posted a valid
question/issue.
---
I stumbled upon an issue today when creating a function which adds SSH
keys to an agent on demand. This function should (and does, in `zsh -f`)
only be called when git/ssh is used. The function also has the same name
as the program.
However, I use a zsh framework which depends on vcs_info, which causes
some issue (https://github.com/Eriner/zim/issues/30).
When git is called from vcs_info, it does not appear to call it
directly, so any definitions of it, such as a function, will take priority.
This results in the function (seen in the first post of the GitHub
issue) being called when any (or none at all) command is called, because
the framework checks if the current directory is used by git using vcs_info.
Could vcs_info be changed so that it calls git directly? Thus far, this
appears to be the cause of the issue.
Thanks in advance.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author