removed windows and linux split subdir
This commit is contained in:
parent
83dda10fa8
commit
065b982734
280 changed files with 9053 additions and 426 deletions
6
.antidote/tests/testdata/real/.zsh_plugins.crlf.txt
vendored
Normal file
6
.antidote/tests/testdata/real/.zsh_plugins.crlf.txt
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# CRLF file
|
||||
rupa/z
|
||||
zsh-users/zsh-syntax-highlighting
|
||||
zsh-users/zsh-completions
|
||||
zsh-users/zsh-autosuggestions
|
||||
zsh-users/zsh-history-substring-search
|
||||
52
.antidote/tests/testdata/real/.zsh_plugins.txt
vendored
Normal file
52
.antidote/tests/testdata/real/.zsh_plugins.txt
vendored
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# paths
|
||||
#$ZDOTDIR/aliases.zsh
|
||||
$ZSH_CUSTOM/plugins/myplugin
|
||||
|
||||
# plugins
|
||||
zsh-users/zsh-history-substring-search
|
||||
https://github.com/zsh-users/zsh-autosuggestions
|
||||
|
||||
# git@ repo URLs aren't good for CI... revisit
|
||||
# git@github.com:zsh-users/zsh-completions.git
|
||||
|
||||
# kind:zsh
|
||||
zsh-users/zsh-syntax-highlighting kind:zsh
|
||||
|
||||
# kind:clone
|
||||
zsh-users/antigen kind:clone
|
||||
|
||||
# kind:fpath
|
||||
sindresorhus/pure kind:fpath
|
||||
|
||||
# kind:path
|
||||
romkatv/zsh-bench kind:path
|
||||
|
||||
# kind:autoload
|
||||
mattmc3/zman path:functions kind:autoload
|
||||
|
||||
# fpath-rule
|
||||
ohmyzsh/ohmyzsh path:plugins/gradle fpath-rule:prepend
|
||||
ohmyzsh/ohmyzsh path:plugins/docker fpath-rule:append
|
||||
|
||||
# conditional
|
||||
ohmyzsh/ohmyzsh path:plugins/macos conditional:is-macos
|
||||
|
||||
# branches
|
||||
mattmc3/antidote branch:pz
|
||||
|
||||
# subpath plugins
|
||||
ohmyzsh/ohmyzsh path:lib/clipboard.zsh
|
||||
ohmyzsh/ohmyzsh path:plugins/extract
|
||||
ohmyzsh/ohmyzsh path:plugins/magic-enter
|
||||
ohmyzsh/ohmyzsh path:plugins/fancy-ctrl-z
|
||||
|
||||
# deferred
|
||||
zdharma-continuum/fast-syntax-highlighting kind:defer
|
||||
|
||||
# theme
|
||||
dracula/zsh
|
||||
|
||||
# non-conforming plugins
|
||||
peterhurford/up.zsh
|
||||
rummik/zsh-tailf
|
||||
rupa/z
|
||||
43
.antidote/tests/testdata/real/.zsh_plugins.zsh
vendored
Normal file
43
.antidote/tests/testdata/real/.zsh_plugins.zsh
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
fpath+=( $ZSH_CUSTOM/plugins/myplugin )
|
||||
source $ZSH_CUSTOM/plugins/myplugin/myplugin.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/zsh-users/zsh-history-substring-search )
|
||||
source $ANTIDOTE_HOME/zsh-users/zsh-history-substring-search/zsh-history-substring-search.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/zsh-users/zsh-autosuggestions )
|
||||
source $ANTIDOTE_HOME/zsh-users/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/zsh-users/zsh-syntax-highlighting )
|
||||
source $ANTIDOTE_HOME/zsh-users/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/sindresorhus/pure )
|
||||
export PATH="$ANTIDOTE_HOME/romkatv/zsh-bench:$PATH"
|
||||
fpath+=( $ANTIDOTE_HOME/mattmc3/zman/functions )
|
||||
builtin autoload -Uz $fpath[-1]/*(N.:t)
|
||||
fpath=( $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/gradle $fpath )
|
||||
source $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/gradle/gradle.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/docker )
|
||||
source $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/docker/docker.plugin.zsh
|
||||
if is-macos; then
|
||||
fpath+=( $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/macos )
|
||||
source $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/macos/macos.plugin.zsh
|
||||
fi
|
||||
fpath+=( $ANTIDOTE_HOME/mattmc3/antidote )
|
||||
source $ANTIDOTE_HOME/mattmc3/antidote/pz.plugin.zsh
|
||||
source $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/lib/clipboard.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/extract )
|
||||
source $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/extract/extract.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/magic-enter )
|
||||
source $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/magic-enter/magic-enter.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/fancy-ctrl-z )
|
||||
source $ANTIDOTE_HOME/ohmyzsh/ohmyzsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh
|
||||
if ! (( $+functions[zsh-defer] )); then
|
||||
fpath+=( $ANTIDOTE_HOME/romkatv/zsh-defer )
|
||||
source $ANTIDOTE_HOME/romkatv/zsh-defer/zsh-defer.plugin.zsh
|
||||
fi
|
||||
fpath+=( $ANTIDOTE_HOME/zdharma-continuum/fast-syntax-highlighting )
|
||||
zsh-defer source $ANTIDOTE_HOME/zdharma-continuum/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/dracula/zsh )
|
||||
source $ANTIDOTE_HOME/dracula/zsh/dracula.zsh-theme
|
||||
fpath+=( $ANTIDOTE_HOME/peterhurford/up.zsh )
|
||||
source $ANTIDOTE_HOME/peterhurford/up.zsh/up.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/rummik/zsh-tailf )
|
||||
source $ANTIDOTE_HOME/rummik/zsh-tailf/tailf.plugin.zsh
|
||||
fpath+=( $ANTIDOTE_HOME/rupa/z )
|
||||
source $ANTIDOTE_HOME/rupa/z/z.sh
|
||||
15
.antidote/tests/testdata/real/repo-list.txt
vendored
Normal file
15
.antidote/tests/testdata/real/repo-list.txt
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
https://github.com/dracula/zsh $ANTIDOTE_HOME/dracula/zsh
|
||||
https://github.com/mattmc3/antidote $ANTIDOTE_HOME/mattmc3/antidote
|
||||
https://github.com/mattmc3/zman $ANTIDOTE_HOME/mattmc3/zman
|
||||
https://github.com/ohmyzsh/ohmyzsh $ANTIDOTE_HOME/ohmyzsh/ohmyzsh
|
||||
https://github.com/peterhurford/up.zsh $ANTIDOTE_HOME/peterhurford/up.zsh
|
||||
https://github.com/romkatv/zsh-bench $ANTIDOTE_HOME/romkatv/zsh-bench
|
||||
https://github.com/romkatv/zsh-defer $ANTIDOTE_HOME/romkatv/zsh-defer
|
||||
https://github.com/rummik/zsh-tailf $ANTIDOTE_HOME/rummik/zsh-tailf
|
||||
https://github.com/rupa/z $ANTIDOTE_HOME/rupa/z
|
||||
https://github.com/sindresorhus/pure $ANTIDOTE_HOME/sindresorhus/pure
|
||||
https://github.com/zdharma-continuum/fast-syntax-highlighting $ANTIDOTE_HOME/zdharma-continuum/fast-syntax-highlighting
|
||||
https://github.com/zsh-users/antigen $ANTIDOTE_HOME/zsh-users/antigen
|
||||
https://github.com/zsh-users/zsh-autosuggestions $ANTIDOTE_HOME/zsh-users/zsh-autosuggestions
|
||||
https://github.com/zsh-users/zsh-history-substring-search $ANTIDOTE_HOME/zsh-users/zsh-history-substring-search
|
||||
https://github.com/zsh-users/zsh-syntax-highlighting $ANTIDOTE_HOME/zsh-users/zsh-syntax-highlighting
|
||||
Loading…
Add table
Add a link
Reference in a new issue