mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
18 lines
No EOL
275 B
Text
18 lines
No EOL
275 B
Text
#compdef nosetests
|
|
#autoload
|
|
|
|
# nosetests zsh completion
|
|
|
|
|
|
autoload -U compinit
|
|
compinit
|
|
|
|
autoload -U bashcompinit
|
|
bashcompinit
|
|
|
|
_nosetests()
|
|
{
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
COMPREPLY=(`nosecomplete ${cur} 2>/dev/null`)
|
|
}
|
|
complete -o nospace -F _nosetests nosetests |