File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -468,13 +468,15 @@ pub enum SnippetLanguage {
468
468
Sql ,
469
469
Swift ,
470
470
Svelte ,
471
+ Tcl ,
471
472
Terraform ,
472
473
Toml ,
473
474
TypeScript ,
474
475
Typst ,
475
476
Unknown ( String ) ,
476
477
Xml ,
477
478
Yaml ,
479
+ Verilog ,
478
480
Vue ,
479
481
Zig ,
480
482
Zsh ,
@@ -537,12 +539,14 @@ impl FromStr for SnippetLanguage {
537
539
"sql" => Sql ,
538
540
"svelte" => Svelte ,
539
541
"swift" => Swift ,
542
+ "tcl" => Tcl ,
540
543
"terraform" => Terraform ,
541
544
"toml" => Toml ,
542
545
"typescript" | "ts" => TypeScript ,
543
546
"typst" => Typst ,
544
547
"xml" => Xml ,
545
548
"yaml" => Yaml ,
549
+ "verilog" => Verilog ,
546
550
"vue" => Vue ,
547
551
"zig" => Zig ,
548
552
"zsh" => Zsh ,
Original file line number Diff line number Diff line change @@ -153,12 +153,14 @@ impl CodeHighlighter {
153
153
Sql => "sql" ,
154
154
Swift => "swift" ,
155
155
Svelte => "svelte" ,
156
+ Tcl => "tcl" ,
156
157
Terraform => "tf" ,
157
158
Toml => "toml" ,
158
159
TypeScript => "ts" ,
159
160
Typst => "txt" ,
160
161
// default to plain text so we get the same look&feel
161
162
Unknown ( _) => "txt" ,
163
+ Verilog => "v" ,
162
164
Vue => "vue" ,
163
165
Xml => "xml" ,
164
166
Yaml => "yaml" ,
You can’t perform that action at this time.
0 commit comments