mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Add nosetests plugin
This commit is contained in:
parent
4ce7f0a37f
commit
fbc0ef29f0
1 changed files with 18 additions and 0 deletions
18
plugins/nosetests/_nosetests
Normal file
18
plugins/nosetests/_nosetests
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue