├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── README.md ├── autogen.sh ├── configure.ac ├── ctest.sh ├── doc ├── help.txt ├── screenshot.png ├── screenshot_library.png ├── vimpc.1 └── vimpcrc.example ├── m4 ├── m4_ax_boost_base.m4 ├── m4_ax_boost_chrono.m4 ├── m4_ax_boost_system.m4 ├── m4_ax_boost_thread.m4 ├── m4_ax_cxx_compile_stdcxx_11.m4 ├── m4_ax_pthread.m4 └── ncurses.m4 └── src ├── algorithm.cpp ├── algorithm.hpp ├── assert.hpp ├── buffer ├── browse.cpp ├── browse.hpp ├── buffer.hpp ├── directory.cpp ├── directory.hpp ├── library.cpp ├── library.hpp ├── linebuffer.hpp ├── list.hpp ├── outputs.hpp └── playlist.hpp ├── buffers.cpp ├── buffers.hpp ├── clientstate.cpp ├── clientstate.hpp ├── colours.cpp ├── colours.hpp ├── compiler.hpp ├── config.hpp ├── errorcodes.cpp ├── errorcodes.hpp ├── events.cpp ├── events.hpp ├── lyricsfetcher.cpp ├── lyricsfetcher.hpp ├── lyricsloader.cpp ├── lyricsloader.hpp ├── main.cpp ├── mode ├── command.cpp ├── command.hpp ├── inputmode.cpp ├── inputmode.hpp ├── mode.hpp ├── normal.cpp ├── normal.hpp ├── search.cpp └── search.hpp ├── mpdclient.cpp ├── mpdclient.hpp ├── output.cpp ├── output.hpp ├── player.cpp ├── player.hpp ├── project.hpp ├── regex.cpp ├── regex.hpp ├── screen.cpp ├── screen.hpp ├── settings.cpp ├── settings.hpp ├── song.cpp ├── song.hpp ├── songsorter.hpp ├── tag.hpp ├── test.hpp ├── test ├── algorithms.cpp ├── command.cpp ├── regex.cpp ├── screen.cpp ├── settings.cpp └── window.cpp ├── vimpc.cpp ├── vimpc.hpp ├── wincurses.h └── window ├── browsewindow.cpp ├── browsewindow.hpp ├── console.cpp ├── console.hpp ├── debug.cpp ├── debug.hpp ├── directorywindow.cpp ├── directorywindow.hpp ├── error.cpp ├── error.hpp ├── help.cpp ├── help.hpp ├── infowindow.cpp ├── infowindow.hpp ├── librarywindow.cpp ├── librarywindow.hpp ├── listwindow.cpp ├── listwindow.hpp ├── lyricswindow.cpp ├── lyricswindow.hpp ├── modewindow.cpp ├── modewindow.hpp ├── outputwindow.cpp ├── outputwindow.hpp ├── pagerwindow.cpp ├── pagerwindow.hpp ├── playlistwindow.cpp ├── playlistwindow.hpp ├── result.hpp ├── scrollwindow.cpp ├── scrollwindow.hpp ├── selectwindow.cpp ├── selectwindow.hpp ├── songwindow.cpp ├── songwindow.hpp ├── window.cpp ├── window.hpp ├── windowselector.cpp └── windowselector.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/configure.ac -------------------------------------------------------------------------------- /ctest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/ctest.sh -------------------------------------------------------------------------------- /doc/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/doc/help.txt -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /doc/screenshot_library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/doc/screenshot_library.png -------------------------------------------------------------------------------- /doc/vimpc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/doc/vimpc.1 -------------------------------------------------------------------------------- /doc/vimpcrc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/doc/vimpcrc.example -------------------------------------------------------------------------------- /m4/m4_ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/m4/m4_ax_boost_base.m4 -------------------------------------------------------------------------------- /m4/m4_ax_boost_chrono.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/m4/m4_ax_boost_chrono.m4 -------------------------------------------------------------------------------- /m4/m4_ax_boost_system.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/m4/m4_ax_boost_system.m4 -------------------------------------------------------------------------------- /m4/m4_ax_boost_thread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/m4/m4_ax_boost_thread.m4 -------------------------------------------------------------------------------- /m4/m4_ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/m4/m4_ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /m4/m4_ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/m4/m4_ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ncurses.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/m4/ncurses.m4 -------------------------------------------------------------------------------- /src/algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/algorithm.cpp -------------------------------------------------------------------------------- /src/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/algorithm.hpp -------------------------------------------------------------------------------- /src/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/assert.hpp -------------------------------------------------------------------------------- /src/buffer/browse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/browse.cpp -------------------------------------------------------------------------------- /src/buffer/browse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/browse.hpp -------------------------------------------------------------------------------- /src/buffer/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/buffer.hpp -------------------------------------------------------------------------------- /src/buffer/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/directory.cpp -------------------------------------------------------------------------------- /src/buffer/directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/directory.hpp -------------------------------------------------------------------------------- /src/buffer/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/library.cpp -------------------------------------------------------------------------------- /src/buffer/library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/library.hpp -------------------------------------------------------------------------------- /src/buffer/linebuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/linebuffer.hpp -------------------------------------------------------------------------------- /src/buffer/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/list.hpp -------------------------------------------------------------------------------- /src/buffer/outputs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/outputs.hpp -------------------------------------------------------------------------------- /src/buffer/playlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffer/playlist.hpp -------------------------------------------------------------------------------- /src/buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffers.cpp -------------------------------------------------------------------------------- /src/buffers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/buffers.hpp -------------------------------------------------------------------------------- /src/clientstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/clientstate.cpp -------------------------------------------------------------------------------- /src/clientstate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/clientstate.hpp -------------------------------------------------------------------------------- /src/colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/colours.cpp -------------------------------------------------------------------------------- /src/colours.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/colours.hpp -------------------------------------------------------------------------------- /src/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/compiler.hpp -------------------------------------------------------------------------------- /src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/config.hpp -------------------------------------------------------------------------------- /src/errorcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/errorcodes.cpp -------------------------------------------------------------------------------- /src/errorcodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/errorcodes.hpp -------------------------------------------------------------------------------- /src/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/events.cpp -------------------------------------------------------------------------------- /src/events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/events.hpp -------------------------------------------------------------------------------- /src/lyricsfetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/lyricsfetcher.cpp -------------------------------------------------------------------------------- /src/lyricsfetcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/lyricsfetcher.hpp -------------------------------------------------------------------------------- /src/lyricsloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/lyricsloader.cpp -------------------------------------------------------------------------------- /src/lyricsloader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/lyricsloader.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mode/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/command.cpp -------------------------------------------------------------------------------- /src/mode/command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/command.hpp -------------------------------------------------------------------------------- /src/mode/inputmode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/inputmode.cpp -------------------------------------------------------------------------------- /src/mode/inputmode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/inputmode.hpp -------------------------------------------------------------------------------- /src/mode/mode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/mode.hpp -------------------------------------------------------------------------------- /src/mode/normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/normal.cpp -------------------------------------------------------------------------------- /src/mode/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/normal.hpp -------------------------------------------------------------------------------- /src/mode/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/search.cpp -------------------------------------------------------------------------------- /src/mode/search.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mode/search.hpp -------------------------------------------------------------------------------- /src/mpdclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mpdclient.cpp -------------------------------------------------------------------------------- /src/mpdclient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/mpdclient.hpp -------------------------------------------------------------------------------- /src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/output.cpp -------------------------------------------------------------------------------- /src/output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/output.hpp -------------------------------------------------------------------------------- /src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/player.cpp -------------------------------------------------------------------------------- /src/player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/player.hpp -------------------------------------------------------------------------------- /src/project.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/project.hpp -------------------------------------------------------------------------------- /src/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/regex.cpp -------------------------------------------------------------------------------- /src/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/regex.hpp -------------------------------------------------------------------------------- /src/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/screen.cpp -------------------------------------------------------------------------------- /src/screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/screen.hpp -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/settings.hpp -------------------------------------------------------------------------------- /src/song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/song.cpp -------------------------------------------------------------------------------- /src/song.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/song.hpp -------------------------------------------------------------------------------- /src/songsorter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/songsorter.hpp -------------------------------------------------------------------------------- /src/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/tag.hpp -------------------------------------------------------------------------------- /src/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/test.hpp -------------------------------------------------------------------------------- /src/test/algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/test/algorithms.cpp -------------------------------------------------------------------------------- /src/test/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/test/command.cpp -------------------------------------------------------------------------------- /src/test/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/test/regex.cpp -------------------------------------------------------------------------------- /src/test/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/test/screen.cpp -------------------------------------------------------------------------------- /src/test/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/test/settings.cpp -------------------------------------------------------------------------------- /src/test/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/test/window.cpp -------------------------------------------------------------------------------- /src/vimpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/vimpc.cpp -------------------------------------------------------------------------------- /src/vimpc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/vimpc.hpp -------------------------------------------------------------------------------- /src/wincurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/wincurses.h -------------------------------------------------------------------------------- /src/window/browsewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/browsewindow.cpp -------------------------------------------------------------------------------- /src/window/browsewindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/browsewindow.hpp -------------------------------------------------------------------------------- /src/window/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/console.cpp -------------------------------------------------------------------------------- /src/window/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/console.hpp -------------------------------------------------------------------------------- /src/window/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/debug.cpp -------------------------------------------------------------------------------- /src/window/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/debug.hpp -------------------------------------------------------------------------------- /src/window/directorywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/directorywindow.cpp -------------------------------------------------------------------------------- /src/window/directorywindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/directorywindow.hpp -------------------------------------------------------------------------------- /src/window/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/error.cpp -------------------------------------------------------------------------------- /src/window/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/error.hpp -------------------------------------------------------------------------------- /src/window/help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/help.cpp -------------------------------------------------------------------------------- /src/window/help.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/help.hpp -------------------------------------------------------------------------------- /src/window/infowindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/infowindow.cpp -------------------------------------------------------------------------------- /src/window/infowindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/infowindow.hpp -------------------------------------------------------------------------------- /src/window/librarywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/librarywindow.cpp -------------------------------------------------------------------------------- /src/window/librarywindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/librarywindow.hpp -------------------------------------------------------------------------------- /src/window/listwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/listwindow.cpp -------------------------------------------------------------------------------- /src/window/listwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/listwindow.hpp -------------------------------------------------------------------------------- /src/window/lyricswindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/lyricswindow.cpp -------------------------------------------------------------------------------- /src/window/lyricswindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/lyricswindow.hpp -------------------------------------------------------------------------------- /src/window/modewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/modewindow.cpp -------------------------------------------------------------------------------- /src/window/modewindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/modewindow.hpp -------------------------------------------------------------------------------- /src/window/outputwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/outputwindow.cpp -------------------------------------------------------------------------------- /src/window/outputwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/outputwindow.hpp -------------------------------------------------------------------------------- /src/window/pagerwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/pagerwindow.cpp -------------------------------------------------------------------------------- /src/window/pagerwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/pagerwindow.hpp -------------------------------------------------------------------------------- /src/window/playlistwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/playlistwindow.cpp -------------------------------------------------------------------------------- /src/window/playlistwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/playlistwindow.hpp -------------------------------------------------------------------------------- /src/window/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/result.hpp -------------------------------------------------------------------------------- /src/window/scrollwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/scrollwindow.cpp -------------------------------------------------------------------------------- /src/window/scrollwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/scrollwindow.hpp -------------------------------------------------------------------------------- /src/window/selectwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/selectwindow.cpp -------------------------------------------------------------------------------- /src/window/selectwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/selectwindow.hpp -------------------------------------------------------------------------------- /src/window/songwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/songwindow.cpp -------------------------------------------------------------------------------- /src/window/songwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/songwindow.hpp -------------------------------------------------------------------------------- /src/window/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/window.cpp -------------------------------------------------------------------------------- /src/window/window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/window.hpp -------------------------------------------------------------------------------- /src/window/windowselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/windowselector.cpp -------------------------------------------------------------------------------- /src/window/windowselector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boysetsfrog/vimpc/HEAD/src/window/windowselector.hpp --------------------------------------------------------------------------------