From 350dd257f0597d7d07599d10873d4b314909b29b Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Fri, 21 Oct 2022 01:25:36 +0200 Subject: [PATCH] zsh:keys: Change `ctrl-dot` sequence to libtermkey --- .config/zsh/zshrc.d/60-keys.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/zsh/zshrc.d/60-keys.zsh b/.config/zsh/zshrc.d/60-keys.zsh index 8d0c208..5d48408 100644 --- a/.config/zsh/zshrc.d/60-keys.zsh +++ b/.config/zsh/zshrc.d/60-keys.zsh @@ -171,7 +171,7 @@ bindkey . rationalize_dots # Keep the normal dot self-insert on Ctrl-. (e.g. for typing `../.local`) function default_dot { LBUFFER+=. } zle -N default_dot -bindkey '^N' default_dot +bindkey '^[[46;5u' default_dot CMDS_ON_ENTER=(ll gs) REQUIREMENTS_CMDS_ON_ENTER=(true "git rev-parse")