summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-02 00:18:46 -0500
committerpommicket <pommicket@gmail.com>2023-01-02 00:18:46 -0500
commit636ea84bc7fa738c179168664ea22118ecc89ab3 (patch)
treef0e811c08533d21fddaa2d4aaa7193257890e0d4 /main.c
parent43b8a9cb106d50265f5a6c1307e77d4642710f07 (diff)
restructure ted.c, node.c
Diffstat (limited to 'main.c')
-rw-r--r--main.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/main.c b/main.c
index 26e6749..871d203 100644
--- a/main.c
+++ b/main.c
@@ -1,6 +1,8 @@
/*
@TODO:
- 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
- handle multiple symbols with same name in go-to-definition menu
- better non-error window/showMessage(Request)
- document lsp.h and lsp.c.
@@ -73,18 +75,6 @@ no_warn_end
#pragma comment(lib, "opengl32.lib")
#pragma comment(lib, "shell32.lib")
#endif
-#define PCRE2_STATIC
-#define PCRE2_CODE_UNIT_WIDTH 32
-#include <pcre2.h>
-
-#if DEBUG
-extern unsigned char *stbi_load(const char *filename, int *x, int *y, int *comp, int req_comp);
-#else
-#define STB_IMAGE_STATIC
-no_warn_start
-#include "stb_image.c"
-no_warn_end
-#endif
#include "util.c"