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 0ba2cd5 commit f35946cCopy full SHA for f35946c
tmc-langs-framework/src/meta_syntax.rs
@@ -114,7 +114,9 @@ impl<R: Read> MetaSyntaxParser<BufReader<R>> {
114
let reader = BufReader::new(target);
115
// assigns each supported file extension with the proper comment syntax
116
let meta_syntaxes: &[MetaSyntax] = match target_extension {
117
- "java" | "c" | "cpp" | "h" | "hpp" | "js" | "css" | "rs" | "qml" => &*META_SYNTAXES_C,
+ "java" | "c" | "cpp" | "h" | "hpp" | "js" | "css" | "rs" | "qml" | "cs" => {
118
+ &*META_SYNTAXES_C
119
+ }
120
"xml" | "http" | "html" | "qrc" => &*META_SYNTAXES_HTML,
121
"properties" | "py" | "R" | "pro" => &*META_SYNTAXES_PY,
122
_ => &[],
0 commit comments