blob: 29070697f1f2a833146e9be29e3de7c26c7008bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|