🐤
zshでctrl+Dで何もしない
以下で解決
function do_nothing(){}
zle -N do_nothing
bindkey "^D" do_nothing
setopt IGNORE_EOF
setopt IGNORE_EOF
だけだと
zsh: use 'exit' to exit.
って出てきて連打してるとexitしちゃう
function do_nothing(){}
zle -N do_nothing
bindkey "^D" do_nothing
setopt IGNORE_EOF
setopt IGNORE_EOF
だけだと
zsh: use 'exit' to exit.
って出てきて連打してるとexitしちゃう
Discussion