Skip to content

Commit 7e37ef7

Browse files
committed
Add RON support
Closes cgag#131
1 parent eae396b commit 7e37ef7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ pub enum Lang {
129129
R,
130130
Razor,
131131
Reason,
132+
Ron,
132133
ReStructuredText,
133134
Ruby,
134135
RubyHtml,
@@ -256,6 +257,7 @@ impl Lang {
256257
R => "R",
257258
Razor => "Razor",
258259
Reason => "Reason",
260+
Ron => "RON",
259261
ReStructuredText => "reStructuredText",
260262
Ruby => "Ruby",
261263
RubyHtml => "RubyHtml",
@@ -418,6 +420,7 @@ pub fn lang_from_ext(filepath: &str) -> Lang {
418420
"rake" | "rb" => Ruby,
419421
"re" | "rei" => Reason,
420422
"rhtml" | "erb" => RubyHtml,
423+
"ron" => Ron,
421424
"rs" => Rust,
422425
"s" | "asm" => Assembly,
423426
"sass" | "scss" => Sass,
@@ -539,7 +542,7 @@ pub fn counter_config_for_lang<'a>(lang: Lang) -> (SmallVec<[&'a str; 3]>, Small
539542
AmbientTalk | C | CCppHeader | Rust | Yacc | ActionScript | ColdFusionScript | Css | Cpp | CUDA
540543
| CUDAHeader | CSharp | Dart | DeviceTree | Glsl | Go | Jai | Java | JavaScript | Jsx
541544
| Kotlin | Less | LinkerScript | ObjectiveC | ObjectiveCpp | OpenCl | Qcl | Sass | Scala | Swift
542-
| TypeScript | Tsx | UnrealScript | Stylus | Qml | Haxe | Groovy | Reason | Solidity => c_style,
545+
| TypeScript | Tsx | UnrealScript | Stylus | Qml | Haxe | Groovy | Reason | Solidity | Ron => c_style,
543546

544547

545548
Unrecognized => unreachable!(),

0 commit comments

Comments
 (0)