├── .gitignore ├── CHANGES.md ├── LICENSE.md ├── Makefile ├── README.md ├── dev └── README.md ├── test ├── mockcat ├── mockvim ├── setup ├── test └── test_vimer ├── vimer └── vimer.cmd /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | /coverage/ 3 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/README.md -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/dev/README.md -------------------------------------------------------------------------------- /test/mockcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/test/mockcat -------------------------------------------------------------------------------- /test/mockvim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/test/mockvim -------------------------------------------------------------------------------- /test/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/test/setup -------------------------------------------------------------------------------- /test/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/test/test -------------------------------------------------------------------------------- /test/test_vimer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/test/test_vimer -------------------------------------------------------------------------------- /vimer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/vimer -------------------------------------------------------------------------------- /vimer.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susam/vimer/HEAD/vimer.cmd --------------------------------------------------------------------------------