diff --git a/home/.zsh/widgets.zsh b/home/.zsh/widgets.zsh index 56d7f76..3b579c7 100644 --- a/home/.zsh/widgets.zsh +++ b/home/.zsh/widgets.zsh @@ -1,6 +1,8 @@ _dots_load_keybindings() { bindkey -e - stty -ixon 2>/dev/null + + # Ctrl+D: delete char (suppress IGNORE_EOF logout warning) + bindkey '^D' delete-char # Ctrl+J: zoxide jump _dots_zoxide_widget() { diff --git a/home/.zshrc b/home/.zshrc index 0e0feb6..bd51af9 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -110,7 +110,7 @@ _dots_load_history() { } _dots_load_history -setopt IGNORE_EOF +stty -ixon 2>/dev/null # --- Tool init (cached) ---