aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorMarcin Drzymala2024-03-02 02:05:17 +0000
committerGitHub2024-03-02 02:05:17 +0000
commit1d6db30acf91ec1041e014650bf263defdc3feee (patch)
treee6b7f15caba4ac0f9eec9b60a2569b897fa474d3 /languages.toml
parent062fb819a21a3b17baf0cded3463a2d9f3e6b4a9 (diff)
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
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages.toml b/languages.toml
index 26f6509c..a4b6a5cd 100644
--- a/languages.toml
+++ b/languages.toml
@@ -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"