今天突然發現貼上的時候就提示這個錯誤,通過查閱資料已經解決
解決方法
分析問題,是oh-my-zsh的bracketed-paste-magic功能出現了異常,並未找到更好的方法,暫時先禁用掉。
- 修改 ~/.oh-my-zsh/lib/misc.zsh中下方這一段程式碼,全部註釋掉。
# if [[ $ZSH_VERSION != 5.1.1 ]]; then
# for d in $fpath; do
# if [[ -e "$d/url-quote-magic" ]]; then
# if is-at-least 5.1; then
# autoload -Uz bracketed-paste-magic
# zle -N bracketed-paste bracketed-paste-magic
# fi
# autoload -Uz url-quote-magic
# zle -N self-insert url-quote-magic
# break
# fi
# done
# fi