From 12ac14ccba906ae2f42fc3ed9688e20fb9c41c3f Mon Sep 17 00:00:00 2001 From: Peter Vacho Date: Wed, 31 Dec 2025 15:09:27 +0100 Subject: [PATCH] Add edit-command-line zsh keybinding --- home/.config/zsh/rc/keybinds.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/.config/zsh/rc/keybinds.zsh b/home/.config/zsh/rc/keybinds.zsh index 015dbe5..b26c077 100644 --- a/home/.config/zsh/rc/keybinds.zsh +++ b/home/.config/zsh/rc/keybinds.zsh @@ -63,3 +63,7 @@ bindkey ' ' magic-space # [ctrl+space] Accept suggestion from zsh-autosuggestions plugin bindkey '^ ' autosuggest-accept +# [Ctrl-xe] - open buffer line in editor +autoload -Uz edit-command-line +zle -N edit-command-line +bindkey '^X^e' edit-command-line