From 97b514f1fa7d7ec3ae9802e46f516d3bbd244f94 Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Tue, 6 Oct 2020 14:33:07 +0100 Subject: [PATCH] ZSH: makes edit with vim shortcut Ctrl+x For some reason ctrl+x ctrl+e has stopped working. I think it is probably related to the use of suckless scroll. This uses ctrl+e which is interpreted as a scroll. For now though, using ctrl+x is fine --- shells/zsh/includes/keybindings.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shells/zsh/includes/keybindings.zsh b/shells/zsh/includes/keybindings.zsh index aa714753..726a5552 100644 --- a/shells/zsh/includes/keybindings.zsh +++ b/shells/zsh/includes/keybindings.zsh @@ -56,7 +56,7 @@ bindkey '^D' exit_zsh autoload -U edit-command-line zle -N edit-command-line -bindkey '\C-x\C-e' edit-command-line +bindkey '\C-x' edit-command-line bindkey -M viins jj vi-cmd-mode