From: Simon Ruderich Date: Fri, 6 Feb 2009 16:20:35 +0000 (+0100) Subject: Load zsh/complist before compinit. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=59acfe69f7b93e94551220659b0c7445193e2440;p=config%2Fdotfiles.git Load zsh/complist before compinit. This allows menu-select to work as mentioned in zshcompsys(1). --- 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