• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build/H10-Jan-2019-135101

doc/H03-May-2022-9581

m4/H10-Jan-2019-1,1021,007

src/H10-Jan-2019-25,65018,495

.gitignoreH A D10-Jan-2019389 3029

AUTHORSH A D10-Jan-2019165 95

COPYINGH A D10-Jan-201934.3 KiB675553

ChangeLogH A D10-Jan-20194.9 KiB139122

Makefile.amH A D10-Jan-20194.8 KiB129119

README.mdH A D10-Jan-20191.6 KiB5035

autogen.shH A D10-Jan-2019180 75

configure.acH A D10-Jan-20197.9 KiB217163

ctest.shH A D10-Jan-20192 KiB9071

README.md

1# vimpc
2> Client for mpd with vi-like key bindings
3
4vimpc provides an alternative to other mpd clients (such as ncmpc and ncmpcpp) that tries to provide an interface similar to that of the vim text editor.
5
6Type `:help` in the client or see `doc/help.txt` for more details.
7
8![Color Support](/doc/screenshot.png "Color Support")
9
10![Library](/doc/screenshot_library.png "Library")
11
12## Installation
13
14    ./autogen.sh
15    ./configure
16    make
17    # as root:
18    make install
19
20## Dependencies
21    * libmpdclient
22    * pcre
23    * libncursesw
24    * taglib (can be disabled with ./configure --enable-taglib=no)
25
26> NOTE: On debian you will also require the *-dev packages. All Debian
27> dependencies can be installed with the following command:
28
29    sudo apt-get install build-essential autoconf \
30        libmpdclient2 libmpdclient-dev libpcre3 libpcre3-dev \
31        libncursesw5 libncursesw5-dev libncurses5-dev \
32        libtagc0 libtagc0-dev
33
34## License
35
36Copyright (c) 2010 - 2013 Nathan Sweetman
37
38This program is free software: you can redistribute it and/or modify
39it under the terms of the GNU General Public License as published by
40the Free Software Foundation, either version 3 of the License, or
41(at your option) any later version.
42
43This program is distributed in the hope that it will be useful,
44but WITHOUT ANY WARRANTY; without even the implied warranty of
45MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
46GNU General Public License for more details.
47
48You should have received a copy of the GNU General Public License
49along with this program.  If not, see <http://www.gnu.org/licenses/>.
50