Browse Source

Merge pull request #324 from sorin-ionescu/plugin-compleat

Compleat - Completion for Human Beings Plugin
Robby Russell 14 years ago
parent
commit
4a497b021c
1 changed files with 22 additions and 0 deletions
  1. 22 0
      plugins/compleat/compleat.plugin.zsh

+ 22 - 0
plugins/compleat/compleat.plugin.zsh

@@ -0,0 +1,22 @@
+# ------------------------------------------------------------------------------
+#          FILE:  compleat.plugin.zsh
+#   DESCRIPTION:  oh-my-zsh plugin file.
+#        AUTHOR:  Sorin Ionescu (sorin.ionescu@gmail.com)
+#       VERSION:  1.0.0
+# ------------------------------------------------------------------------------
+
+
+if (( ${+commands[compleat]} )); then
+  local prefix="${commands[compleat]:h:h}"
+  local setup="${prefix}/share/compleat-1.0/compleat_setup" 
+
+  if [[ -f "$setup" ]]; then
+    if ! bashcompinit >/dev/null 2>&1; then
+      autoload -U bashcompinit
+      bashcompinit -i
+    fi
+
+    source "$setup" 
+  fi
+fi
+