1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-07-17 18:51:02 +02:00
zsh/Completion/Unix/Command/_nice
2007-03-22 10:45:19 +00:00

14 lines
246 B
Text

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