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
```
This commit is contained in:
Curiosidad-Racional 2021-11-09 02:49:43 +01:00 committed by GitHub
parent 3f0345ff58
commit 41fc326325
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = " " }