# -*- sh -*- # A handy-dandy function for reloading completions we might hack on compreload () { ARG="$1" unfunction _$ARG autoload _$ARG } # The following lines were added by compinstall zstyle ':completion:*' auto-description 'specify: %d' zstyle ':completion:*' completer _complete _ignored zstyle ':completion:*' expand prefix suffix zstyle ':completion:*' file-sort name zstyle ':completion:*' format 'Completions for %d' zstyle ':completion:*' group-name '' zstyle ':completion:*' list-colors '' zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s zstyle ':completion:*' matcher-list '' 'r:|[._-]=* r:|=*' zstyle ':completion:*' preserve-prefix '//[^/]##/' zstyle ':completion:*' squeeze-slashes true zstyle ':completion:*' use-compctl false zstyle ':completion:*' verbose true zstyle :compinstall filename "${HOME}/.resources/zsh/rc.d/50-completions" autoload -Uz compinit compinit # End of lines added by compinstall