We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b18b49 commit a857c1cCopy full SHA for a857c1c
1 file changed
sublime_modelines.py
@@ -67,7 +67,7 @@ def get_line_comment_char(view):
67
if not commentChar2:
68
return re.escape(commentChar.strip())
69
else:
70
- return "("+re.escape(commentChar.strip())+"|"+re.escape(commentChar2.strip())+")"
+ return "(" + re.escape(commentChar.strip()) + "|" + re.escape(commentChar2.strip()) + ")"
71
72
def build_modeline_prefix(view):
73
lineComment = get_line_comment_char(view).lstrip() or DEFAULT_LINE_COMMENT
0 commit comments