-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from mattmc3/v1.9.4
v1.9.4
- Loading branch information
Showing
54 changed files
with
574 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/zsh | ||
|
||
### Compile bundles | ||
#function __antidote_bundle_zcompile { | ||
emulate -L zsh; setopt local_options $_adote_funcopts | ||
builtin autoload -Uz zrecompile | ||
|
||
local -a bundles | ||
if [[ -z "$1" ]]; then | ||
bundles=($(antidote-list --dirs)) | ||
elif [[ -f "$1" ]]; then | ||
zrecompile -pq "$1" | ||
return | ||
elif [[ -d "$1" ]]; then | ||
bundles=($1) | ||
else | ||
bundles=($(antidote-path "$1")) | ||
fi | ||
|
||
local bundle zfile | ||
for bundle in $bundles; do | ||
for zfile in ${bundle}/**/*.zsh{,-theme}(N); do | ||
[[ $zfile != */test-data/* ]] || continue | ||
zrecompile -pq "$zfile" | ||
done | ||
done | ||
# } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/zsh | ||
|
||
### Collect <redirected or piped| input | ||
#function __antidote_collect_input { | ||
local -a input=() | ||
if (( $# > 0 )); then | ||
input=("${(s.\n.)${@}}") | ||
elif [[ ! -t 0 ]]; then | ||
local data | ||
while IFS= read -r data || [[ -n "$data" ]]; do | ||
input+=("$data") | ||
done | ||
fi | ||
printf '%s\n' "${input[@]}" | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.