vitunes 0.0.8 → 0.0.9
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 +7 -2
- data/lib/vitunes/version.rb +1 -1
- data/lib/vitunes.vim +3 -0
- metadata +1 -1
data/README.markdown
CHANGED
@@ -28,6 +28,9 @@ Then
|
|
28
28
|
`vitunes-install` installs a Vim plugin into your ~/.vim/plugin
|
29
29
|
directory.
|
30
30
|
|
31
|
+
If you get an error message saying that vitunes-install is missing, then you probably have
|
32
|
+
a `PATH` issue. Put the directory where Rubygems install executable on your `PATH`.
|
33
|
+
|
31
34
|
## How to use it
|
32
35
|
|
33
36
|
### General commands
|
@@ -63,8 +66,10 @@ Press `ENTER` or `ESC` to exit either search query or drop-down selection mode.
|
|
63
66
|
### Playhead
|
64
67
|
|
65
68
|
* `SPACEBAR` play/pause
|
66
|
-
* `>` next track
|
67
|
-
* `<` previous track
|
69
|
+
* `>` next track in ViTunesBuffer
|
70
|
+
* `<` previous track in ViTunesBuffer
|
71
|
+
* `,>` next track in iTunes current playlist
|
72
|
+
* `,<` previous track in iTunes current playlist
|
68
73
|
* `.` show current track and playlist, if any
|
69
74
|
|
70
75
|
### Copying tracks
|
data/lib/vitunes/version.rb
CHANGED
data/lib/vitunes.vim
CHANGED
@@ -71,6 +71,9 @@ function! ViTunes()
|
|
71
71
|
|
72
72
|
noremap <buffer> > :call <SID>nextTrack()<cr>
|
73
73
|
noremap <buffer> < :call <SID>prevTrack()<cr>
|
74
|
+
noremap <buffer> ,> :call <SID>itunesControl("nextTrack")<cr>
|
75
|
+
noremap <buffer> ,< :call <SID>itunesControl("prevTrack")<cr>
|
76
|
+
|
74
77
|
|
75
78
|
noremap <buffer> . :call <SID>currentTrackAndPlaylist()<cr>
|
76
79
|
|