2

我在 OSX 中使用终端 vim 并且我已经通过自制软件安装了 ctags

然后我添加了/usr/local/bin/目录添加到我的 PATH

并且还别名 CTAGS 以使用自制软件安装的版本

所有这些都在我的 .zshrc 中,并且工作正常。

问题是当我尝试运行时:!ctags -R .在 VIM中运行时

它失败了,因为它无法识别选项“-R”

我跑了:!which ctags又回来了

/usr/bin/ctags

取而代之的是/usr/local/bin/ctags

有什么办法可以解决这个问题吗?

更新

我添加了我的 zshrc 文件

# number of lines kept in history
export HISTSIZE=1000
# number of lines saved in the history after logout
export SAVEHIST=1000
# location of history
export HISTFILE=~/.zhistory
# append command to history file once executed
setopt inc_append_history

autoload -U compinit
compinit

# Colors
autoload -U colors
colors
setopt prompt_subst

# Save a smiley to a local variable if the last command exited with success.
local smiley="%(?,%{$fg[green]%}☺%{$reset_color%},%{$fg[red]%}☹%{$reset_color%})"

# Show the relative path on one line, then the smiley.
PROMPT='%{$fg[cyan]%}%~ ${smiley} %{$reset_color%}'

RPROMPT='%{$fg[cyan]%} $(~/Dotfiles/rbenv-version.sh)$(~/Dotfiles/git-cwd-info.sh)%{$reset_color%}'

# Example aliases
source ~/Dotfiles/zsh/aliases
source ~/Dotfiles/zsh/plugins/bundler.zsh

export SHELL=/bin/zsh

export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH=/usr/local/bin:$PATH

eval "$(rbenv init -)"

export LC_ALL=en_US.utf-8
export LANG="$LC_ALL"

export EDITOR=vim
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
4

1 回答 1

2

根据超级用户中的这个答案,我发现了问题所在

Vim '忽略'你的别名,因为你的 shell 没有'心情'来解析你的 .bash_profile/.bashrc (你没有指定,你的别名是在哪里定义的),因为它不是作为登录/交互式 shell 启动的(阅读这里了解更多关于何时以及出于何种原因阅读的内容)。

我的解决方案是设置一个全局路径,如此处所述

是编辑我的/etc/paths

并添加/usr/local/bin文件的开头(在其他情况下它不起作用)

/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
于 2013-05-07T00:47:28.130 回答