aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authoralois312022-11-23 03:49:02 +0000
committerGitHub2022-11-23 03:49:02 +0000
commit26ec1cf39a3c5f548f199918b0a84d614a5c6be7 (patch)
tree8b0c5cd2f238ae81f66d6ae19dc67b916a17ba3c /languages.toml
parent42e37a571e75aaf4feb1717dfebe8cf215e535dd (diff)
Add QML language support (#4842)
Fixes https://github.com/helix-editor/helix/issues/2771
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml
index 47d77fee..1e7dcbf7 100644
--- a/languages.toml
+++ b/languages.toml
@@ -1980,3 +1980,16 @@ language-server = { command = "bicep-langserver" }
[[grammar]]
name = "bicep"
source = { git = "https://github.com/the-mikedavis/tree-sitter-bicep", rev = "d8e097fcfa143854861ef737161163a09cc2916b" }
+
+[[language]]
+name = "qml"
+scope = "source.qml"
+file-types = ["qml"]
+roots = []
+language-server = { command = "qmlls" }
+indent = { tab-width = 4, unit = " " }
+grammar = "qmljs"
+
+[[grammar]]
+name = "qmljs"
+source = { git = "https://github.com/yuja/tree-sitter-qmljs", rev = "0b2b25bcaa7d4925d5f0dda16f6a99c588a437f1" }