Skip to content

Commit 113e534

Browse files
committed
Use same name used in config files for langs in docs
1 parent d31c116 commit 113e534

File tree

4 files changed

+39
-106
lines changed

4 files changed

+39
-106
lines changed

book/src/generated/lang-support.md

Lines changed: 38 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,40 @@
11
| Language | Syntax Highlighting | Treesitter Textobjects | Auto Indent | Default LSP |
22
| --- | --- | --- | --- | --- |
3-
| Bash || | | `bash-language-server` |
4-
| C || | | `clangd` |
5-
| C# || | | |
6-
| CMake || | | `cmake-language-server` |
7-
| C++ || | | `clangd` |
8-
| CSS || | | |
9-
| Elixir || | | `elixir-ls` |
10-
| GLSL || || |
11-
| Go |||| `gopls` |
12-
| HTML || | | |
13-
| Java || | | |
14-
| JavaScript || || |
15-
| JSON || || |
16-
| Julia || | | `julia` |
17-
| LaTeX || | | |
18-
| Ledger || | | |
19-
| LLVM || | | |
20-
| Lua || || |
21-
| Mint | | | | `mint` |
22-
| Nix || || `rnix-lsp` |
23-
| OCaml || || |
24-
| OCaml-Interface || | | |
25-
| Perl ||| | |
26-
| PHP || || |
27-
| Prolog | | | | `swipl` |
28-
| Protobuf || || |
29-
| Python |||| `pylsp` |
30-
| Racket | | | | `racket` |
31-
| Ruby || | | `solargraph` |
32-
| Rust |||| `rust-analyzer` |
33-
| Svelte || || `svelteserver` |
34-
| TOML || | | |
35-
| TSQ || | | |
36-
| TSX || | | `typescript-language-server` |
37-
| TypeScript || || `typescript-language-server` |
38-
| Vue || | | |
39-
| WGSL || | | |
40-
| YAML || || |
41-
| Zig || || `zls` |
3+
| bash || | | `bash-language-server` |
4+
| c || | | `clangd` |
5+
| c-sharp || | | |
6+
| cmake || | | `cmake-language-server` |
7+
| cpp || | | `clangd` |
8+
| css || | | |
9+
| elixir || | | `elixir-ls` |
10+
| glsl || || |
11+
| go |||| `gopls` |
12+
| html || | | |
13+
| java || | | |
14+
| javascript || || |
15+
| json || || |
16+
| latex || | | |
17+
| ledger || | | |
18+
| llvm || | | |
19+
| lua || || |
20+
| mint | | | | `mint` |
21+
| nix || || `rnix-lsp` |
22+
| ocaml || || |
23+
| ocaml-interface || | | |
24+
| perl ||| | |
25+
| php || || |
26+
| prolog | | | | `swipl` |
27+
| protobuf || || |
28+
| python |||| `pylsp` |
29+
| racket | | | | `racket` |
30+
| ruby || | | `solargraph` |
31+
| rust |||| `rust-analyzer` |
32+
| svelte || || `svelteserver` |
33+
| toml || | | |
34+
| tsq || | | |
35+
| tsx || | | `typescript-language-server` |
36+
| typescript || || `typescript-language-server` |
37+
| vue || | | |
38+
| wgsl || | | |
39+
| yaml || || |
40+
| zig || || `zls` |

helix-core/src/syntax.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ pub struct Configuration {
5151
pub struct LanguageConfiguration {
5252
#[serde(rename = "name")]
5353
pub language_id: String, // c-sharp, rust
54-
pub display_name: String, // C#, Rust
5554
pub scope: String, // source.rust
5655
pub file_types: Vec<String>, // filename ends_with? <Gemfile, rb, etc>
5756
#[serde(default)]

0 commit comments

Comments
 (0)