From 71dd41a1eec144fc1d7be7c07c3d1198fb85c8d4 Mon Sep 17 00:00:00 2001 From: bonanza123 Date: Tue, 20 Sep 2016 18:03:08 +0200 Subject: [PATCH] Add matlab/octave comment recognition --- gitinspector/comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitinspector/comment.py b/gitinspector/comment.py index 2df26d1..0271665 100644 --- a/gitinspector/comment.py +++ b/gitinspector/comment.py @@ -32,7 +32,7 @@ __comment_end__ = {"java": "*/", "c": "*/", "cc": "*/", "cpp": "*/", "cs": "*/", __comment__ = {"java": "//", "c": "//", "cc": "//", "cpp": "//", "cs": "//", "h": "//", "hh": "//", "hpp": "//", "hs": "--", "pl": "#", "php": "//", "py": "#", "glsl": "//", "rb": "#", "robot": "#", "rs": "//", "rlib": "//", "js": "//", "scala": "//", "sql": "--", "tex": "%", "ada": "--", "ads": "--", "adb": "--", "pot": "#", "po": "#", "go": "//", - "ly": "%", "ily": "%"} + "ly": "%", "ily": "%", "m": "%"} __comment_markers_must_be_at_begining__ = {"tex": True}