作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 oh-my-zsh
并尝试启用 git-flow-completion
.我正在按照说明操作 here将其安装为插件。
我按照说明克隆了插件文件:
git clone https://github.com/bobthecow/git-flow-completion ~/.oh-my-zsh/custom/plugins/git-flow-completion
~/.zshrc
要包含的文件:
plugins=(git git-flow git-flow-completion)
git flow
并点击
tab
, 我得到当前目录中的文件列表而不是
git flow
子命令。
~/.zshrc
包括:
plugins=(git git-flow git-flow-completion emoji emoji-clock)
random_emoji
和
emoji-clock
函数产生预期的输出,但 git flow 完成仍然不起作用。
.zshrc
在加载线上方
oh-my-zsh.sh
.没运气。
$ZSH_CUSTOM
它指向
git-flow-completion
所在的目录插件已安装。
git-flow-completion
无关。插入。
source ~/.oh-my-zsh/custom/plugins/git-flow-completion/git-flow-completion.zsh
最佳答案
这是一个令人讨厌的问题……但我把它修好了。
首先删除这两个文件:
rm /usr/local/share/zsh/site-functions/_git
rm /usr/local/etc/bash_completion.d/git-flow-completion.bash
然后重置
completion cache :
# Delete the completion cache
rm "$ZSH_COMPDUMP"
# Restart the zsh session
exec zsh
关于git-flow - 如何在 oh-my-zsh 中启用 git-flow-completion?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40228639/
我是一名优秀的程序员,十分优秀!