Last active
August 29, 2015 13:57
-
-
Save ngsw/9636742 to your computer and use it in GitHub Desktop.
NeoBundleInstall テスト用
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p ~/.vim/bundle | |
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim | |
echo -e "$TERM\n$SHELL" | |
vim # NeoBundleInstall が走る | |
export TERM=putty | |
rm -rf ~/.vim/bundle | |
mkdir -p ~/.vim/bundle | |
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim | |
echo -e "$TERM\n$SHELL" | |
vim # NeoBundleInstall が走る # /bin/zsh の場合に限り失敗する |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
原因は
~/.zshenv 内で標準出力をするようなコマンド(具体的には screen -ls)を実行していたため。
~/.zshrc に記述を移すことでエラーは解消された。