summaryrefslogblamecommitdiff
path: root/_posts/2009-04-25-controll-xmms2-from-vim.textile
blob: 6b713c301067041185664a383629e3cd32104179 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                       
---
layout: post
category: app
title: controll xmms2 from vim
---

a really basic way to controll xmms2 from your vim session:

{% highlight vim %}
map <leader>xn <Esc>:!xmms2 next<CR><CR>
map <leader>xb <Esc>:!xmms2 previous<CR><CR>
map <leader>xP <Esc>:!xmms2 pause<CR><CR>
map <leader>xp <Esc>:!xmms2 play<CR><CR>
map <leader>xs <Esc>:!xmms2 stop<CR><CR>
{% endhighlight %}

now, type *,xn* in vim, and xmms2 will start to play the next track from your playlist.