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
pull/9789/head
Marcin Drzymala 4 months ago committed by GitHub
parent 062fb819a2
commit 1d6db30acf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2915,9 +2915,9 @@ scope = "source.just"
file-types = [{ glob = "justfile" }, { glob = "Justfile" }, { glob = ".justfile" }, { glob = ".Justfile" }]
injection-regex = "just"
comment-token = "#"
indent = { tab-width = 4, unit = "\t" }
auto-format = true
formatter = { command = "just", args = ["--dump"] }
indent = { tab-width = 4, unit = " " }
# auto-format = true
# formatter = { command = "just", args = ["--dump"] } # Please see: https://github.com/helix-editor/helix/issues/9703
[[grammar]]
name = "just"

Loading…
Cancel
Save