Blame view

plugins/compleat/compleat.plugin.zsh 630 Bytes
093a6c34b   mj   Squashed 'repos/r...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  # ------------------------------------------------------------------------------
  #          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