Skip to content

Instantly share code, notes, and snippets.

@ngsw
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngsw/9636742 to your computer and use it in GitHub Desktop.
Save ngsw/9636742 to your computer and use it in GitHub Desktop.
NeoBundleInstall テスト用
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 の場合に限り失敗する
@ngsw
Copy link
Author

ngsw commented Apr 11, 2014

原因は
~/.zshenv 内で標準出力をするようなコマンド(具体的には screen -ls)を実行していたため。
~/.zshrc に記述を移すことでエラーは解消された。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment