summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-10-16 21:00:02 -0400
committerpommicket <pommicket@gmail.com>2023-10-16 21:00:02 -0400
commit581a17d964e35cdbbe4e90a7bf0333ef73cd49a8 (patch)
treefc2029eec66ca8c7050c77390a59ef2472a6fbf0 /main.c
parenta01d4de1e2feda34a20bb8dd65ec76fef3c20d6b (diff)
start new config nonsense
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.c b/main.c
index df50932..60c2396 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,8 @@
/*
+TODO:
+- switch back to starting file after rename
+- put signature help at top if cursor is near bottom
+- .editorconfig? see https://editorconfig.org/
FUTURE FEATURES:
- autodetect indentation (tabs vs spaces)
- custom file/build command associations
@@ -1261,7 +1265,7 @@ int main(int argc, char **argv) {
buffer_free(ted->build_buffer);
buffer_free(ted->argument_buffer);
ted_free_fonts(ted);
- config_free(ted);
+ config_free_all(ted);
macros_free(ted);
free(ted);
#if _WIN32