From 904dd2a61ef195c19d5a64dd5635b6e4c1364b7e Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Wed, 3 Feb 2021 17:20:17 -0500 Subject: finishing touches for v. 0.1 --- README.md | 9 +++++++++ main.c | 3 +++ 2 files changed, 12 insertions(+) diff --git a/README.md b/README.md index 389b8e3..cb89c40 100644 --- a/README.md +++ b/README.md @@ -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 + + + + + +
Version Description Date
0.0 Very basic editor 2021 Jan 31
0.1 Syntax highlighting 2021 Feb 3
+ ## License ted is in the public domain (see `LICENSE.txt`). diff --git a/main.c b/main.c index e6c7d74..3ad3786 100644 --- a/main.c +++ b/main.c @@ -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 -- cgit v1.2.3