Add matlab/octave comment recognition

This commit is contained in:
bonanza123 2016-09-20 18:03:08 +02:00 committed by GitHub
parent ba1c3341fe
commit 71dd41a1ee

View file

@ -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}