From 59acfe69f7b93e94551220659b0c7445193e2440 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Fri, 6 Feb 2009 17:20:35 +0100 Subject: [PATCH] Load zsh/complist before compinit. This allows menu-select to work as mentioned in zshcompsys(1). --- zsh/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/rc b/zsh/rc index b8ad05f..e133f6d 100644 --- a/zsh/rc +++ b/zsh/rc @@ -162,11 +162,11 @@ fi # COMPLETION SETTINGS -# Use new completion system. -autoload -U compinit && compinit # Load the complist module which provides additions to completion lists # (coloring, scrollable). zmodload zsh/complist +# Use new completion system. +autoload -U compinit && compinit # Make sure the list of possible completions is displayed after pressing # the first time. setopt nolistambiguous -- 2.44.2