Skip to content

Commit

Permalink
Fix bug 9703 by commenting out the wrong command (helix-editor#9778)
Browse files Browse the repository at this point in the history
* Fix bug 9703 by commenting out the wrong command

This fixes issue helix-editor#9703 by removing the wrong formatting command for justfiles.

* Fix indentation width for justfile
  • Loading branch information
drzymalanet authored and mtoohey31 committed Jun 2, 2024
1 parent 92e49c8 commit 3f8855d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3f8855d

Please sign in to comment.