removed windows and linux split subdir
This commit is contained in:
parent
83dda10fa8
commit
065b982734
280 changed files with 9053 additions and 426 deletions
17
.antidote/antidote.zsh
Normal file
17
.antidote/antidote.zsh
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# shell prereq
|
||||
if test -z "$ZSH_VERSION"; then
|
||||
shellname=$(ps -p $$ -oargs= | awk 'NR=1{print $1}')
|
||||
echo >&2 "antidote: Expecting zsh. Found '$shellname'."
|
||||
return 1
|
||||
else
|
||||
builtin autoload -Uz is-at-least
|
||||
if ! is-at-least 5.4.2; then
|
||||
echo >&2 "antidote: Unsupported Zsh version '$ZSH_VERSION'. Expecting Zsh >5.4.2."
|
||||
return 1
|
||||
fi
|
||||
|
||||
typeset -f __antidote_setup &>/dev/null && unfunction __antidote_setup
|
||||
0=${(%):-%N}
|
||||
builtin autoload -Uz ${0:A:h}/functions/__antidote_setup
|
||||
__antidote_setup
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue