Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Octopress/githubページで遊んでいます。rake deployと入力すると、ターミナルは常にzsh:correct'deploy'を'_deploy' [nyae]?に出力します。nを入力します。
'zsh:correct' deploy'を'_deploy'[nyae]に表示しないようにするには、何をする必要がありますか?'私のターミナルで?
前もって感謝します。
rake deploy zsh: correct 'deploy' to '_deploy' [nyae]?
簡単な修正: オートコレクトを無効にします。あなたの~/.zshrc:
~/.zshrc
unsetopt correct_all
オートコレクトが必要で、次の場合は必要ない場合rake:
rake
alias rake='nocorrect rake'