From 03b7153046f5af58996e9eda1d009220ac3966bc Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Mon, 22 Jun 2020 12:06:12 -0600 Subject: [PATCH] return keystroke now fires zsh select menu command --- zsh/rc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/rc b/zsh/rc index c9b276e..8f8cfc2 100644 --- a/zsh/rc +++ b/zsh/rc @@ -30,4 +30,7 @@ alias clera='clear'; alias sl='sl -alF | lolcat'; # --- ZSH Completion Styles ----------------------------------- +zmodload -i zsh/complist; + zstyle ':completion:*' menu select; +bindkey -M menuselect '^M' .accept-line; # don't require 'return' to select menu item