Remove "true" from odinfmt line (#11759)
The `-stdin` in `odinfmt` does not take any arguments, the `true` part here just confuses the formatter, and makes it ignore `odinfmt.json` file. Removing it fixes the issue.
This commit is contained in:
parent
f49b18d157
commit
b18a471ed1
1 changed files with 1 additions and 1 deletions
|
@ -2133,7 +2133,7 @@ language-servers = [ "ols" ]
|
||||||
comment-token = "//"
|
comment-token = "//"
|
||||||
block-comment-tokens = { start = "/*", end = "*/" }
|
block-comment-tokens = { start = "/*", end = "*/" }
|
||||||
indent = { tab-width = 4, unit = "\t" }
|
indent = { tab-width = 4, unit = "\t" }
|
||||||
formatter = { command = "odinfmt", args = [ "-stdin", "true" ] }
|
formatter = { command = "odinfmt", args = [ "-stdin" ] }
|
||||||
|
|
||||||
[language.debugger]
|
[language.debugger]
|
||||||
name = "lldb-dap"
|
name = "lldb-dap"
|
||||||
|
|
Loading…
Add table
Reference in a new issue