summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2023-01-25Rename `append_buffer` to textbufcflip
This name is a little bit better I think, and it will be nice to have a distinction between this utility and the 'file' kind of buffer.
2023-01-25Use Glypher as the official name of the editorcflip
2023-01-22Add an uninstall rule to the Makefilecflip
2023-01-19Add an install command to the Makefilecflip
2023-01-19Load gzipped fonts from /usr/local/share/consolefonts/cflip
The editor now loads fonts from /usr/ instead of the current working directory. Since they are gzipped the font loading code now uses zlib to read from the files. These fonts in particular were installed with `make install-psf` from the Terminus makefile, however the location may vary from system to system.
2023-01-17Rename 'rows' to 'lines' everywherecflip
For whatever reason lines were called rows in the code, so this refactor changes that name everywhere. The name 'row' is still used in some places to refer to the unit of height in the screen.
2023-01-11Remove all terminal-related codecflip
2023-01-10Improve makefilecflip
2023-01-08Compile with debug information enabledcflip
2023-01-08Connect the window and font code to the editor's main functioncflip
2023-01-08Initial import of existing source codecflip
This is based off of snaptoken's "Build Your Own Text Editor" tutorial at https://viewsourcecode.org/snaptoken/kilo/.