aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCuriosidad-Racional2021-11-09 01:49:43 +0000
committerGitHub2021-11-09 01:49:43 +0000
commit41fc3263256615219d2930398817b961d9a54512 (patch)
tree4e72eefa2aa0a1f60387e4ee58a6feaa747364d0
parent3f0345ff5814cea1d733ec2c5d846db66de29af6 (diff)
Fix panicked missing field `shebangs` (#1025)
Fix the error: ``` thread 'main' panicked at 'Could not parse merged (built-in + user) languages.toml: Error { inner: ErrorInner { kind: Custom, line: None, col: 0, at: None, message: "missing field `shebangs`", key: ["language"] } }', helix-term/src/application.rs:87:14 ```
-rw-r--r--languages.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/languages.toml b/languages.toml
index 45fc2ab2..934def44 100644
--- a/languages.toml
+++ b/languages.toml
@@ -405,6 +405,7 @@ language-server = { command = "cmake-language-server" }
name = "glsl"
scope = "source.glsl"
file-types = ["glsl", "vert", "tesc", "tese", "geom", "frag", "comp" ]
+shebangs = []
roots = []
comment-token = "//"
indent = { tab-width = 4, unit = " " }