├── .gitignore ├── LICENSE ├── LICENSE_KILO ├── README.md ├── TODO ├── UNSUPPORTED_LIST └── src ├── keywords.h ├── makefile ├── mvim.c └── mvim.conf.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_KILO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/LICENSE_KILO -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/TODO -------------------------------------------------------------------------------- /UNSUPPORTED_LIST: -------------------------------------------------------------------------------- 1 | Screen horizontal scroll instead of auto-wrapping 2 | -------------------------------------------------------------------------------- /src/keywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/src/keywords.h -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/src/makefile -------------------------------------------------------------------------------- /src/mvim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/src/mvim.c -------------------------------------------------------------------------------- /src/mvim.conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziyao233/mvim/HEAD/src/mvim.conf.h --------------------------------------------------------------------------------