Recognize comments in Robot Framework (.robot) files (#88).

This commit is contained in:
Adam Waldenberg 2015-12-09 09:30:49 +01:00
parent 4ee02f5907
commit 533bba64c6
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ __comment_end__ = {"java": "*/", "c": "*/", "cc": "*/", "cpp": "*/", "cs": "*/",
"go": "*/"}
__comment__ = {"java": "//", "c": "//", "cc": "//", "cpp": "//", "cs": "//", "h": "//", "hh": "//", "hpp": "//", "hs": "--",
"pl": "#", "php": "//", "py": "#", "glsl": "//", "rb": "#", "js": "//", "scala": "//", "sql": "--", "tex": "%",
"ada": "--", "ads": "--", "adb": "--", "pot": "#", "po": "#", "go": "//"}
"pl": "#", "php": "//", "py": "#", "glsl": "//", "rb": "#", "robot": "#", "js": "//", "scala": "//", "sql": "--",
"tex": "%", "ada": "--", "ads": "--", "adb": "--", "pot": "#", "po": "#", "go": "//"}
__comment_markers_must_be_at_begining__ = {"tex": True}