diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | main.c | 3 |
2 files changed, 12 insertions, 0 deletions
@@ -37,6 +37,7 @@ a simple editor that starts up practically instantaneously, and performs well on - Multiple tabs, each with a different file - Auto-indent - Customization of (pretty much) all colours and keyboard commands. +- Syntax highlighting for C, C++, Rust, and Python. ## Building from source @@ -47,6 +48,14 @@ Copy SDL2-2.x.y into the ted directory, and rename it to SDL2. Additionally, cop to the ted directory. Then run `make.bat`. +## Version history + +<table> +<tr><th>Version</th> <th>Description</th> <th>Date</th></tr> +<tr><td>0.0</td> <td>Very basic editor</td> <td>2021 Jan 31</td></tr> +<tr><td>0.1</td> <td>Syntax highlighting</td> <td>2021 Feb 3</td></tr> +</table> + ## License ted is in the public domain (see `LICENSE.txt`). @@ -1,6 +1,9 @@ // @TODO: +// - line numbering // - popup to reload files and config on change +// - find & replace (with regex) // - split +// - completion // - Windows installation #include "base.h" no_warn_start |