An open API service indexing awesome lists of open source software.

https://github.com/0xhanyuu/hotmilk

rudimentary esoteric linux-based text editor
https://github.com/0xhanyuu/hotmilk

c shell text-editor

Last synced: 3 months ago
JSON representation

rudimentary esoteric linux-based text editor

Awesome Lists containing this project

README

          

# hotmilk
A rudimentary, esoteric text editor with an 'append-only' model, where escape sequences are typed manually in order to reflect the corresponding changes in the output file.

Supported escape sequences:

- `\t` - tab
- `\n` - newline
- `\b` - backspace

Some hotmilk-specific control sequences are / were (intended to be) implemented in this text editor in order to be able to interface the output file, such as:

- `^s` - save (to existing file)
- `^x` - exit

## Example:

A line such as:

> #include \n\nint main()\n{\n\tprintf("%s\\n", "Hello, World!");\n\t\n\treturn 0;\n}^s^x

\- would output the following in the output file:

```c
#include

int main()
{
printf("%s\n", "Hello, World!");
return 0;
}
```

## Note:

This project is unfinished, lacks certain features and was made to be a proof of concept.