├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── vi.c /.gitignore: -------------------------------------------------------------------------------- 1 | vi 2 | .o 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymiiOrg/viless/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymiiOrg/viless/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymiiOrg/viless/HEAD/README.md -------------------------------------------------------------------------------- /vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaymiiOrg/viless/HEAD/vi.c --------------------------------------------------------------------------------