vitunes 0.4.5 → 0.4.6
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 +6 -6
- data/lib/vitunes.vim +3 -0
- data/lib/vitunes/version.rb +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
|
@@ -6,12 +6,12 @@ ViTunes lets you control and navigate iTunes from the comfort of Vim.
|
|
|
6
6
|
|
|
7
7
|
Benefits:
|
|
8
8
|
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* Zen-minimalist
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
9
|
+
* Control iTunes without leaving Vim, where one is probably in a state of productive bliss
|
|
10
|
+
* Avoid using the mouse or trackpad; keystrokes get you there faster
|
|
11
|
+
* Zen-minimalist textual UI works better on small screens than iTunes' complicated, multi-paned GUI
|
|
12
|
+
* Control iTunes from another computer over ssh, across the room or across the world
|
|
13
|
+
* Let multiple people control one instance of iTunes over ssh ([how][multi])
|
|
14
|
+
* Control iTunes from GNU/Linux computers over ssh (I control the iTunes on my Mac Mini from two Linux Asus netbooks that I move around the apartment)
|
|
15
15
|
|
|
16
16
|
[multi]:https://github.com/danchoi/vitunes/wiki
|
|
17
17
|
|
data/lib/vitunes.vim
CHANGED
|
@@ -11,6 +11,9 @@ else
|
|
|
11
11
|
let s:vitunes_tool = '/Users/choi/projects/vitunes/build/Release/vitunes '
|
|
12
12
|
" Maybe I should make this a relative path
|
|
13
13
|
endif
|
|
14
|
+
if !exists("g:mapleader")
|
|
15
|
+
let g:mapleader = ","
|
|
16
|
+
endif
|
|
14
17
|
|
|
15
18
|
let s:searchPrompt = "Search iTunes Music Library: "
|
|
16
19
|
let s:getPlaylistsCommand = s:vitunes_tool . "playlists"
|
data/lib/vitunes/version.rb
CHANGED