summaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorVuiMuich2023-04-14 15:03:21 +0000
committerGitHub2023-04-14 15:03:21 +0000
commit4cdba7cccdd6a9fe5fbb3d15c9db3edc147b7a90 (patch)
treefcf47d2c5aab01d6c845f19107d8f4f486e0d359 /languages.toml
parent896404c7ead29c4c19564581ccb53b913440a583 (diff)
Add standalone language support for `just` (#6453)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml17
1 files changed, 15 insertions, 2 deletions
diff --git a/languages.toml b/languages.toml
index 575ed82d..8a0aa661 100644
--- a/languages.toml
+++ b/languages.toml
@@ -978,8 +978,8 @@ source = { git = "https://github.com/uyha/tree-sitter-cmake", rev = "6e51463ef30
[[language]]
name = "make"
scope = "source.make"
-file-types = ["Makefile", "makefile", "mk", "Justfile", "justfile", ".justfile"]
-injection-regex = "(make|makefile|Makefile|mk|just)"
+file-types = ["Makefile", "makefile", "mk"]
+injection-regex = "(make|makefile|Makefile|mk)"
roots = []
comment-token = "#"
indent = { tab-width = 4, unit = "\t" }
@@ -2505,3 +2505,16 @@ language-server = { command = "clangd" }
[[grammar]]
name = "opencl"
source = { git = "https://github.com/lefp/tree-sitter-opencl", rev = "8e1d24a57066b3cd1bb9685bbc1ca9de5c1b78fb" }
+
+[[language]]
+name = "just"
+scope = "source.just"
+file-types = ["justfile", "Justfile", "just"]
+injection-regex = "just"
+roots = []
+comment-token = "#"
+indent = { tab-width = 4, unit = "\t" }
+
+[[grammar]]
+name = "just"
+source = { git = "https://github.com/IndianBoy42/tree-sitter-just", rev = "8af0aab79854aaf25b620a52c39485849922f766" }