删除Scintilla JavaScript词法分析器中的青色突出显示

时间:2010-11-20 22:43:37

标签: .net scintilla

我有一个在.NET中工作的Scintilla实例,但我想删除JavaScript词法分析器中的某些内容。在替代某些东西之间的东西时,它是青色/绿色背景。我认为这张图片显示得足够清楚:

click here, I'm new so I cannot post the image here

我在编辑器的属性中找不到这种颜色。有人知道如何删除它吗?

感谢。

1 个答案:

答案 0 :(得分:1)

JavaScript突出显示基于C ++突出显示,因此这两个对我有效的JavaScript字符串:

# Double quoted string
style.cpp.6=$(colour.string)
# Single quoted string
style.cpp.7=$(colour.char)

还有一种风格突出了未终结的字符串,这可能就是你所追求的

# End of line where string is not closed
style.cpp.12=fore:#000000,$(font.monospace),back:#E0C0E0,eolfilled
相关问题