多了个 \ 导致 zsh-autosuggestions 的提示会错位,就贼难用
我输入的是npx eslint ./index.js
,但是显示的是 npxx eslint ./index.j s
现在我只能每次执行完命令后,手动再输入一次zsh
才行
这个只会再 vscode 的终端才会出现,其他终端都是正常的
1
jswxg 210 天前
这是 zsh 自动转义功能,要关闭可以在 ~/.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 |