vitunes 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +16 -1
- data/lib/vitunes/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -73,7 +73,9 @@ one.
|
|
|
73
73
|
More advanced autocompletion tips:
|
|
74
74
|
|
|
75
75
|
* `CTRL-e` closes the match list and lets you continue typing
|
|
76
|
-
* `CTRL-u`: when the match list is active, cycles forward through the match
|
|
76
|
+
* `CTRL-u`: when the match list is active, cycles forward through the match
|
|
77
|
+
list and what you've typed so far; when the match list is inactive, erases
|
|
78
|
+
what you've typed.
|
|
77
79
|
* `CTRL-x CTRL-u` reactivates autocompletion if it's gone away
|
|
78
80
|
* `CTRL-y` selects the highlighted match without triggering ENTER
|
|
79
81
|
|
|
@@ -95,6 +97,16 @@ line is blank, or try `ESC` then `q`.
|
|
|
95
97
|
* `<<` previous track in iTunes current playlist
|
|
96
98
|
* `.` show current track and playlist, if any
|
|
97
99
|
|
|
100
|
+
One thing to note: if you start playing a track that you've gotten to through a
|
|
101
|
+
playlist search, iTunes will play in continous mode, where the next track in
|
|
102
|
+
the playlist will automatically start playing after the current one ends.
|
|
103
|
+
|
|
104
|
+
But if you start playing a track you got to through search or some other path,
|
|
105
|
+
iTunes will stop playing after the current track ends.
|
|
106
|
+
|
|
107
|
+
If you want use ViTunes to find and queue a bunch of track and have them play
|
|
108
|
+
in automatic succession, use the next feature...
|
|
109
|
+
|
|
98
110
|
### Copying tracks
|
|
99
111
|
|
|
100
112
|
* `,c` copy track(s) to a playlist
|
|
@@ -103,6 +115,9 @@ To copy tracks, put the cursor on a track or select a range of tracks,
|
|
|
103
115
|
and then hit `,c` to select a playlist to copy them to. The tracks will be
|
|
104
116
|
added to the end of the playlist.
|
|
105
117
|
|
|
118
|
+
If this target playlist is already playing, you can keep queuing tracks to it
|
|
119
|
+
and let the mix play out automatically.
|
|
120
|
+
|
|
106
121
|
## Bug reports and feature requests
|
|
107
122
|
|
|
108
123
|
Please submit these at either of these places:
|
data/lib/vitunes/version.rb
CHANGED