Fix bug 9703 by commenting out the wrong command (#9778)
* Fix bug 9703 by commenting out the wrong command This fixes issue https://github.com/helix-editor/helix/issues/9703 by removing the wrong formatting command for justfiles. * Fix indentation width for justfile
This commit is contained in:
parent
062fb819a2
commit
1d6db30acf
1 changed files with 3 additions and 3 deletions
|
@ -2915,9 +2915,9 @@ scope = "source.just"
|
||||||
file-types = [{ glob = "justfile" }, { glob = "Justfile" }, { glob = ".justfile" }, { glob = ".Justfile" }]
|
file-types = [{ glob = "justfile" }, { glob = "Justfile" }, { glob = ".justfile" }, { glob = ".Justfile" }]
|
||||||
injection-regex = "just"
|
injection-regex = "just"
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
indent = { tab-width = 4, unit = "\t" }
|
indent = { tab-width = 4, unit = " " }
|
||||||
auto-format = true
|
# auto-format = true
|
||||||
formatter = { command = "just", args = ["--dump"] }
|
# formatter = { command = "just", args = ["--dump"] } # Please see: https://github.com/helix-editor/helix/issues/9703
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "just"
|
name = "just"
|
||||||
|
|
Loading…
Add table
Reference in a new issue