mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
18 lines
349 B
Plaintext
18 lines
349 B
Plaintext
sm_autocomplete() {
|
|
# make zsh emulate bash if necessary
|
|
if [[ -n "$ZSH_VERSION" ]]; then
|
|
autoload bashcompinit
|
|
bashcompinit
|
|
fi
|
|
|
|
snakemake_options=$(snakemake --snakefile Snakefile --list)
|
|
complete -W "${snakemake_options}" 'snakemake'
|
|
}
|
|
|
|
cd() {
|
|
builtin cd "$@"
|
|
if [ -f "Snakefile" ]; then
|
|
sm_autocomplete
|
|
fi
|
|
|
|
} |