summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-11 22:59:03 -0500
committerpommicket <pommicket@gmail.com>2023-01-11 22:59:03 -0500
commit0c102146685ad0707ddb7e2f8ea1166782c1e76d (patch)
tree6576a100d629de66a117eb60b547f17e800969c4 /ted.h
parentb01c7b595cabce4704b6e5e6ead61bdebdedc923 (diff)
build-command setting + a bunch of config fixes
- now we only show the first config error - path matching is now ranked more highly than language matching - paths with forward slashes are now handled for Windows path-specific settings
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ted.h b/ted.h
index f6e8ae4..76058af 100644
--- a/ted.h
+++ b/ted.h
@@ -147,7 +147,8 @@ typedef struct {
char root_identifiers[4096];
char lsp[512];
char lsp_configuration[4096];
- char build_default_command[256];
+ char build_command[1024];
+ char build_default_command[1024];
// [i] = comma-separated string of file extensions for language i, or NULL for none
char *language_extensions[LANG_COUNT];
KeyAction *key_actions; // dynamic array, sorted by KEY_COMBO(modifier, key)