blob: f2f68836881f530de01ff974e0a962eaa392d25d (
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] = [-+](-|)<-> ]]; then
shift words
(( CURRENT -- ))
elif [[ $CURRENT -gt 2 && $words[1] = -n ]]; then
shift 2 words
(( CURRENT -= 2 ))
fi
_normal
|