summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--buffer.c3
-rw-r--r--main.c1
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`.
<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>
-<tr><td>0.2</td> <td>Line numbers, check if file changed by another program</td> <td>2021 Feb 5</ted></tr>
+<tr><td>0.2</td> <td>Line numbers, check if file changed by another program</td> <td>2021 Feb 5</td></tr>
+<tr><td>0.3</td> <td>Find+replace, highlight matching parentheses, indent/dedent selection</td> <td>2021 Feb 11</td></tr>
</table>
## 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