Unnamed repository; edit this file 'description' to name the repository.
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 ```
Curiosidad-Racional 2021-11-09
parent 3f0345f · commit 41fc326
-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 = " " }