mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
15 lines
241 B
Plaintext
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
|