From 143ed955b939b3292801fb9503ad8759467defcd Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Thu, 11 Feb 2021 14:51:10 -0500 Subject: finishing touches for v. 0.3 --- README.md | 3 ++- buffer.c | 3 ++- main.c | 1 - 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4e94168..d7a121e 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,8 @@ Then run `make.bat`. Version Description Date 0.0 Very basic editor 2021 Jan 31 0.1 Syntax highlighting 2021 Feb 3 -0.2 Line numbers, check if file changed by another program 2021 Feb 5 +0.2 Line numbers, check if file changed by another program 2021 Feb 5 +0.3 Find+replace, highlight matching parentheses, indent/dedent selection 2021 Feb 11 ## License diff --git a/buffer.c b/buffer.c index 3f7e521..dfca9f8 100644 --- a/buffer.c +++ b/buffer.c @@ -2319,4 +2319,5 @@ void buffer_dedent_selection(TextBuffer *buffer) { u32 l2 = buffer->selection_pos.line; sort2_u32(&l1, &l2); // ensure l1 <= l2 buffer_dedent_lines(buffer, l1, l2); -} \ No newline at end of file +} + diff --git a/main.c b/main.c index ef3b9dd..2d13318 100644 --- a/main.c +++ b/main.c @@ -1,5 +1,4 @@ // @TODO: -// - highlight matching parentheses // - split // - completion // - view-only -- cgit v1.2.3