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 a91894d commit 9fbde32Copy full SHA for 9fbde32
tmc-langs-framework/src/main/java/fi/helsinki/cs/tmc/langs/domain/MetaSyntaxGenerator.java
@@ -20,7 +20,7 @@ public static List<MetaSyntax> listSyntaxes(String fileType) {
20
list.add(new MetaSyntax("\\/\\*+", "\\*+\\/")); /* */
21
} else if (fileType.matches("xml|http|html")) {
22
list.add(new MetaSyntax("<!--", "-->"));
23
- } else if (fileType.matches("properties|py")) {
+ } else if (fileType.matches("properties|py|R")) {
24
list.add(new MetaSyntax("#", ""));
25
}
26
cache.put(fileType, list);
0 commit comments