diff options
author | pommicket <pommicket@gmail.com> | 2023-01-02 00:18:46 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-02 00:18:46 -0500 |
commit | 636ea84bc7fa738c179168664ea22118ecc89ab3 (patch) | |
tree | f0e811c08533d21fddaa2d4aaa7193257890e0d4 /main.c | |
parent | 43b8a9cb106d50265f5a6c1307e77d4642710f07 (diff) |
restructure ted.c, node.c
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -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" |