diff options
author | pommicket <pommicket@gmail.com> | 2023-01-11 22:59:03 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-11 22:59:03 -0500 |
commit | 0c102146685ad0707ddb7e2f8ea1166782c1e76d (patch) | |
tree | 6576a100d629de66a117eb60b547f17e800969c4 /ted.h | |
parent | b01c7b595cabce4704b6e5e6ead61bdebdedc923 (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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |