From 533bba64c69b44e9e94c549b8b7c1d9f347d8b5b Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Wed, 9 Dec 2015 09:30:49 +0100 Subject: [PATCH] Recognize comments in Robot Framework (.robot) files (#88). --- gitinspector/comment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitinspector/comment.py b/gitinspector/comment.py index a968f2b..36dd687 100644 --- a/gitinspector/comment.py +++ b/gitinspector/comment.py @@ -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}