好吧,夥計們,一切都很好。讓我概述我對解決方案的步驟。首先,非常感謝@romainl和@mpapis的幫助。 @romainl,我做的第一件事就是嘗試RVM插件,但這沒有幫助。然後我看了一下at the link that @mpapis posted,在那裏我瞭解了MacVim的隱藏設置。那麼,我不能馬上找到這個設置,因爲當他們提到偏好時,他們不是在討論UI(通常映射到Command +,熱鍵)。他們談論
:h macvim
我掃描the aforementioned post後發現了這一點。
一旦我到達了macvim的幫助部分,我搜索了世界「shell」。
/shell
我在3.首選項部分找到了兩個設置。
==============================================================================
3. Preferences macvim-prefs macvim-preferences
Some settings are global to the MacVim application and would not make sense as
Vim options. These settings are stored in the user defaults database and can
be accessed via the "MacVim.Preferences..." menu item.
macvim-user-defaults
Not all entries in the user defaults database are exposed via the preference
panel, usually because they should not be changed by the user under normal
circumstances. These options can still be changed with the "defaults" command
by opening Terminal and typing
defaults write org.vim.MacVim KEY VALUE
Check the man page on "defaults" for more information on this command as well
as general information regarding Mac OS X user defaults.
Here is a list of relevant dictionary entries:
...more entries
MMLoginShellArgument login shell parameter [string]
MMLoginShellCommand which shell to use to launch Vim [string]
...more entries
MMLoginShellArgument和MMLoginShellCommand設置引起了我的注意。所以我嘗試了其中一個設置,通過
defaults write org.vim.MacVim KEY VALUE
語法,但無濟於事。
然後,我用Google搜索「mmloginshell命令的MacVim」,這是2個設置我在的的MacVim幫助首節找到了一個。
The first link was a Stackoverflow question.
一旦我到了那裏,我遇到了this answer,這給我this page on the MacVim Github wiki。
到了那裏,我也跟着比約恩溫克勒的(一個核心的MacVim開發商)在他的故障排除指南步驟;特別是標題爲「用於zsh用戶」的部分。
正是在這裏,我瞭解這2個文件:
/etc/zshenv
/etc/zprofile
人們預計,當的MacVim加載和zsh的是當前shell〜/ .zshrc的內容將被讀/來源,但不是這種情況。一旦我意識到這兩個文件(/ etc/zshenv和/ etc/zprofile)中的一個應該包含我的$ PATH變量,我開始將它從〜/ .zshrc單獨遷移到每個文件中,以查看是否可以工作。我最初針對/ etc/zshenv(同時保持/ etc/zprofile完好),重新加載vim/MacVim,並且所有工作都完美無缺。
which rails
這次確實有正確的輸出。
@romainl,當你開始詢問我的$ PATH變量是否是在Terminal.app和VIM之間的同步,我覺得我誤以爲他們是等價的。在稍後分析這兩組產出時,我發現它們確實有些不同。這對於潛在的問題是一個很好的指標。我的錯誤和謝謝。
bash用戶可能需要考慮什麼,我懷疑是在/ etc/zshenv,這是概括here in this post的等價物。
本施密特提到,你應該設置你的$ PATH變量 「〜/ .profile中沒有的〜/ .bashrc」;所以在排除故障時需要考慮一些事項。
我不記得在使用我在〜/ .bashrc中指定的$ PATH變量的時候曾經遇到過這個問題,但是誰知道......這些信息可能在某些時候派上用場。
謝謝大家,我希望這個信息可以幫助陷入困境的zsh用戶。快樂的紅寶石黑客。
你如何啓動MacVim?當你使用Finder.app(雙擊,右鍵>用...打開)時,MacVim以與在Terminal.app中執行'$ vim filename'不同的環境開始。試試捆綁的'mvim'腳本:'$ mvim filename'。 – romainl
如您所述,我通過終端的mvim命令啓動。 –
請比較Vim和MacVim中':!echo $ PATH'的輸出。 – romainl