summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-02 14:10:38 -0500
committerpommicket <pommicket@gmail.com>2023-01-02 14:10:38 -0500
commitf791aa01fad7e81223808584212c6a1a4c80ca07 (patch)
treef93d53a62035cdad7f16b97fb28c83c7acfaf14f /main.c
parentc0d0117a963cf8e4dfb28b919087d8a8ecbbca6e (diff)
finish restructuring
Diffstat (limited to 'main.c')
-rw-r--r--main.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/main.c b/main.c
index f8e07d7..59db07b 100644
--- a/main.c
+++ b/main.c
@@ -1,5 +1,6 @@
/*
@TODO:
+- don't include SDL when possible
- rename v[234] to vec[234]
- make ctrl+up/ctrl+down move to next/prev blank line
- broken session fix: close buffers not in any used node
@@ -17,11 +18,9 @@
- when searching files, put exact matches at the top
- auto-set build command for cmake (both for windows and unix)
--- LSP MERGE ---
-- improve structure of ted source code to make LSP completions better
- (make every c file a valid translation unit)
- - some way of opening + closing all C files in directory for clangd workspace/symbols to work?
- is this still necessary?
- - maybe it can be done with the clangd config instead.s
+- some way of opening + closing all C files in directory for clangd workspace/symbols to work?
+ is this still necessary?
+ - maybe it can be done with the clangd config instead.
- CSS highlighting
- styles ([color] sections)
- more documentation generally (development.md or something?)
@@ -57,7 +56,6 @@ FUTURE FEATURES:
#include "ted.h"
#include <locale.h>
-#include <wctype.h>
#include <signal.h>
#if __linux__
#include <execinfo.h>