瀏覽代碼

修复`TODO`在某些情况下未高亮的问题。

mxd 3 年之前
父節點
當前提交
a5c5db3a8a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      magic-editor/src/console/src/scripts/editor/high-light.js

+ 1 - 1
magic-editor/src/console/src/scripts/editor/high-light.js

@@ -28,7 +28,7 @@ export const HighLightOptions = {
             [/0[xX](@hexdigits)n?/, 'number.hex'],
             [/0[bB](@binarydigits)n?/, 'number.binary'],
             [/(@digits)[lLbBsSdDfFmM]?/, 'number'],
-            [/\/\*/, 'comment', '@comment'],
+            [/\/\*\**/, 'comment', '@comment'],
             [/\/\//, 'comment', '@commentTodo'],
             [
                 /\/(?=([^\\\/]|\\.)+\/([gimsuy]*)(\s*)(\.|;|,|\)|\]|\}|$))/,