File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,15 @@ function _sn() {
9
9
' drop:Drop current track from the current playlist and skip to the next track'
10
10
' forward:Fast forward the current track by a percentage of its length (10% by default)'
11
11
' jump:Fast forward the current track to the next section'
12
+ ' switch:Switch device (Spotify/Sonos)'
13
+ ' move:Move song to playlist A'
12
14
' s:alias for `skip`'
13
15
' d:alias for `drop`'
14
16
' f:alias for `forward`'
15
17
' j:alias for `jump`'
18
+ ' w:alias for `switch`'
19
+ ' m:alias for `move`'
16
20
' repl:Run application in interactive mode'
17
- ' switch:Switch device (Spotify/Sonos)'
18
21
)
19
22
20
23
_arguments " 1: :{_describe 'command' cmds}" ' *:: :->args'
@@ -43,6 +46,10 @@ function _sn() {
43
46
_arguments -C $help
44
47
;;
45
48
49
+ move)
50
+ _arguments -C $help
51
+ ;;
52
+
46
53
switch)
47
54
_arguments -C $help
48
55
;;
@@ -67,6 +74,10 @@ function _sn() {
67
74
_arguments -C $help
68
75
;;
69
76
77
+ m)
78
+ _arguments -C $help
79
+ ;;
80
+
70
81
repl)
71
82
_arguments -C $help
72
83
;;
You can’t perform that action at this time.
0 commit comments