├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md └── editor ├── .gitignore ├── xenon.c └── xenon.o /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arin-Grigoras/Xenon-text-editor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arin-Grigoras/Xenon-text-editor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arin-Grigoras/Xenon-text-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arin-Grigoras/Xenon-text-editor/HEAD/README.md -------------------------------------------------------------------------------- /editor/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.txt -------------------------------------------------------------------------------- /editor/xenon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arin-Grigoras/Xenon-text-editor/HEAD/editor/xenon.c -------------------------------------------------------------------------------- /editor/xenon.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arin-Grigoras/Xenon-text-editor/HEAD/editor/xenon.o --------------------------------------------------------------------------------