보안을 그리다, 훈이

[VScode] zsh Parse error 본문

macOS/settings

[VScode] zsh Parse error

HooNeee 2021. 9. 24. 19:23

 

Fix zsh Parse error

 

 

macOS를 통해 VScode로 작업하며 zsh을 연동하여 사용하고 있는데 아래와 같은 에러 문구가 등장했다.

 

zsh: parse error near ')'

 

CRLF error로 추정되는 이 현상을 해결하기 위해 TERMINAL에 다음과 같이 입력하니 정상적으로 작동했다.

 

cd $ZSH
git config core.autocrlf input
git rm --cached -r .
git reset --hard

 

 

 

[관련 링크]

 

Broken prompt after another oh-my-zsh upgrade · Issue #155 · agnoster/agnoster-zsh-theme

After anothe oh-my-zsh upgrade my prompt is messed up: /Users/alabala1/.oh-my-zsh/themes/agnoster.zsh-theme:97: parse error near `<<<' alabala1@ip-192-168-2-4 ~ % prompt_context() { &l...

github.com

 

Comments