├── .gitignore ├── .travis.yml ├── Cask ├── LICENSE ├── Makefile ├── ibuffer-sidebar.el ├── readme.org ├── screenshots ├── ibuffer-sidebar.png └── with-dired-sidebar.png └── test ├── ibuffer-sidebar-test.el └── test-helper.el /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/Cask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/Makefile -------------------------------------------------------------------------------- /ibuffer-sidebar.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/ibuffer-sidebar.el -------------------------------------------------------------------------------- /readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/readme.org -------------------------------------------------------------------------------- /screenshots/ibuffer-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/screenshots/ibuffer-sidebar.png -------------------------------------------------------------------------------- /screenshots/with-dired-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/screenshots/with-dired-sidebar.png -------------------------------------------------------------------------------- /test/ibuffer-sidebar-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/test/ibuffer-sidebar-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/ibuffer-sidebar/HEAD/test/test-helper.el --------------------------------------------------------------------------------