We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f5763e commit d436c82Copy full SHA for d436c82
tmc-langs-framework/src/meta_syntax.rs
@@ -116,7 +116,9 @@ impl<R: Read> MetaSyntaxParser<BufReader<R>> {
116
let reader = BufReader::new(target);
117
// assigns each supported file extension with the proper comment syntax
118
let meta_syntaxes: &[MetaSyntax] = match target_extension {
119
- "java" | "c" | "cpp" | "h" | "hpp" | "js" | "css" | "rs" | "qml" => &*META_SYNTAXES_C,
+ "java" | "c" | "cpp" | "h" | "hpp" | "js" | "css" | "rs" | "qml" | "cs" => {
120
+ &*META_SYNTAXES_C
121
+ }
122
"xml" | "http" | "html" | "qrc" => &*META_SYNTAXES_HTML,
123
"properties" | "py" | "R" | "pro" => &*META_SYNTAXES_PY,
124
_ => &[],
0 commit comments