From 3a22e605345fd84fbbf606a9a1219c5ff6630ee3 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Wed, 4 Apr 2012 13:29:13 -0400 Subject: [PATCH] Remove compleat Compleat (http://git.io/4foLxQ) has not been updated in two years and should be considered abandoned. --- modules/compleat/init.zsh | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 modules/compleat/init.zsh diff --git a/modules/compleat/init.zsh b/modules/compleat/init.zsh deleted file mode 100644 index 07f37da..0000000 --- a/modules/compleat/init.zsh +++ /dev/null @@ -1,23 +0,0 @@ -# -# Loads Compleat completions. -# -# Authors: -# Sorin Ionescu -# - -# Load dependencies. -omodload 'completion' - -if (( ${+commands[compleat]} )); then - compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup" - - if [[ -f "$compleat_setup" ]]; then - if autoloadable bashcompinit; then - autoload -Uz bashcompinit && bashcompinit - fi - - source "$compleat_setup" - unset compleat_setup - fi -fi -