删除 Scintilla JavaScript 词法分析器中的青色突出显示
我有一个在 .NET 中工作的 Scintilla 实例,但 JavaScript 词法分析器中有一些我想删除的内容。当替换撇号之间的某些内容时,它是青色/绿色背景。我认为这张图片足够清楚地显示了这一点:
我在编辑器属性中的任何位置都找不到这种颜色。有人知道如何删除它吗?
谢谢。
I have an instance of Scintilla working in .NET, but there is something in the JavaScript lexer that I'd like to remove. It is the cyan/green background when replacing something between apostrophies. I think this image shows it clearly enough:
click here, I'm new so I cannot post the image here
I cannot find this color anywhere in my editor's properties. Does somebody know how to remove it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaScript 突出显示基于 C++ 突出显示,因此这两个对我来说影响 JavaScript 字符串:
还有一种突出显示未终止字符串的样式,这可能就是您想要的
The JavaScript highlighting is based on the C++ highlighting, so these two effect JavaScript strings for me:
There's also a style which highlights unterminated strings, which may be what you're after