为什么这个代码块中的分区符号被视为正则表达式?

时间:2016-07-21 03:49:10

标签: javascript sublimetext3 syntax-highlighting

我有一些Javascript代码,包括一些除法运算符,但Sublime Text的Javascript语法高亮显示器将它们视为正则表达式的开头和结尾。这使得很难读取页面其余部分的代码,因为它会导致这一行以下所有行的突出显示问题。

以下是导致问题的代码:

    def DTcomment(self, c, comment):
    comment = ['\0'] * 141
    c2 = 0
    with open('DTquotes.txt') as f:
        for line in f:
            while line[c] != '~':
                comment[c2] = line[c]
                c2+=1
                c+=1

    stringComment = ATS(comment)
    c+=1
    return c, stringComment

以下是它在Sublime Text(Flatland Monokai主题)中的显示效果截图: enter image description here

0 个答案:

没有答案