From 7bbe37b9e655745432f0b7784d37a9595f7e9d77 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 21 Sep 2008 18:17:11 +0200 Subject: [PATCH] Added support for colorized completions in zsh. --- shell/env | 8 ++++++++ zsh/rc | 11 ++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/shell/env b/shell/env index 944a888..400d4d6 100644 --- a/shell/env +++ b/shell/env @@ -9,3 +9,11 @@ export EDITOR=vim # Set less as pager, its configuration is done through the .less file. export PAGER=less + +# Set colors for ls (and zsh completions). This colors files normal (fi), +# directories blue bold (di), symbolic links cyan (ln), named pipes normal +# (pi), sockets normal (so), block devices normal (bd), character devices +# normal (cd) and executables bold red (ex). +# See `dircolors --print-database` for possible colors. +LS_COLORS='no=00:fi=00:di=34;01:ln=36:pi=00:so=00:bd=00:cd=00:ex=31;01' +export LS_COLORS diff --git a/zsh/rc b/zsh/rc index 5d20a45..9b42bd1 100644 --- a/zsh/rc +++ b/zsh/rc @@ -29,8 +29,9 @@ setopt autocd # one. setopt correct -# Use colorized output. +# Use colorized output, necessary for prompts and completions. autoload -U colors && colors + # Set the default prompt. The current host and working directory is displayed, # the exit code of the last command if it wasn't 0 and a + if this shell is # running inside another shell. @@ -42,6 +43,9 @@ PROMPT="%{${fg[green]}%}%B%m%b%{${fg[default]}%}:\ # Use new completion system. autoload -U compinit && compinit +# Load the complist module which provides additions to completion lists +# (coloring, scrollable). +zmodload zsh/complist # Make sure the list of possible completions is displayed after pressing # the first time. setopt nolistambiguous @@ -57,6 +61,11 @@ zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' zstyle ':completion:*:functions' ignored-patterns '_*' # Ignore parent directory. zstyle ':completion:*:(cd|mv|cp):*' ignore-parents parent pwd +# Use ls like colors for completions. +zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} +# Make completion lists scrollable so "do you wish to see all n possibilities" +# is no longer displayed. +zstyle ':completion:*' list-prompt '%p' # Enable zsh's extended glob abilities. setopt extendedglob -- 2.44.1