🐤

zshでctrl+Dで何もしない

2022/06/09に公開

以下で解決

function do_nothing(){}
zle -N do_nothing
bindkey "^D" do_nothing
setopt IGNORE_EOF
setopt IGNORE_EOF

だけだと

zsh: use 'exit' to exit.

って出てきて連打してるとexitしちゃう

GitHubで編集を提案

Discussion