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.cfg | |
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.cfg')
-rw-r--r-- | ted.cfg | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -26,7 +26,13 @@ line-numbers = on auto-reload = on # automatically reload config when saved auto-reload-config = on +# default build command to use if Cargo.toml/Makefile/etc. is not found build-default-command = make +# if this is non-empty, it will be used as the build command, even if Cargo.toml/Makefile/etc. exists. +# very useful with path-specific settings, e.g. use +# [/my/fav/project//core] +# build-command = "supermake --treble-clef -rxvt" +build-command = "" # restore previously opened files when ted is launched? restore-session = on # show autocomplete menu when a trigger character (e.g. '.') is typed (LSP only) |