1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 21:44:11 +01:00
zsh/Completion/Unix/Command/_nice
2003-07-09 14:06:14 +00:00

15 lines
241 B
Plaintext

#compdef nice
shift words
(( CURRENT-- ))
if [[ $CURRENT -gt 1 && $words[1] = [-+](-|)<-> ]]; then
shift words
(( CURRENT -- ))
elif [[ $CURRENT -gt 2 && $words[1] = -n ]]; then
shift 2 words
(( CURRENT -= 2 ))
fi
_normal