diff options
author | pommicket <pommicket@gmail.com> | 2023-10-16 21:00:02 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-10-16 21:00:02 -0400 |
commit | 581a17d964e35cdbbe4e90a7bf0333ef73cd49a8 (patch) | |
tree | fc2029eec66ca8c7050c77390a59ef2472a6fbf0 /main.c | |
parent | a01d4de1e2feda34a20bb8dd65ec76fef3c20d6b (diff) |
start new config nonsense
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |