diff options
author | Curiosidad-Racional | 2021-11-09 01:49:43 +0000 |
---|---|---|
committer | GitHub | 2021-11-09 01:49:43 +0000 |
commit | 41fc3263256615219d2930398817b961d9a54512 (patch) | |
tree | 4e72eefa2aa0a1f60387e4ee58a6feaa747364d0 /languages.toml | |
parent | 3f0345ff5814cea1d733ec2c5d846db66de29af6 (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
```
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 1 |
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 = " " } |