Slic3r/utils/zsh
Henrik Brix Andersen 0e620f3ad2 Make --output accept directories. #535 2012-08-01 17:12:16 +02:00
..
functions Make --output accept directories. #535 2012-08-01 17:12:16 +02:00
README.markdown Add zsh(1) completion system configuration for Slic3r. 2012-07-23 14:51:35 +02:00

README.markdown

ZSH Completions for Slic3r

To enable zsh(1) completions for Slic3r, add the following to your ~/.zshrc file, replacing /path/to/Slic3r/ with the actual path to your Slic3r directory:

typeset -U fpath

if [[ -d /path/to/Slic3r/utils/zsh/functions ]]; then
    fpath=(/path/to/Slic3r/utils/zsh/functions $fpath)
fi

autoload -Uz compinit
compinit
zstyle ':completion:*' verbose true
zstyle ':completion:*:descriptions' format '%B%d%b'
zstyle ':completion:*:messages' format '%d'
zstyle ':completion:*:warnings' format 'No matches for %d'
zstyle ':completion:*' group-name '%d'

See the zshcompsys(1) man page for further details.