问题标签 [qscintilla]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
27 浏览

qt - 选择时 QScintilla 自定义词法分析器额外空间

我正在尝试在 QScintilla 中实现自定义语法突出显示。我继承了 QsciLexerCustom。我尝试在 styleText 中设置文本的颜色和字体。但是一旦设置,选择文本时会有额外的空间

QScintilla 原版无选择

选中时 QScintilla 额外空间

我的代码:

有人知道为什么吗?

0 投票
0 回答
19 浏览

python - Put markers on both ends of the margin

How you can put markers on both ends of the number margin in pyqt qscintilla, for example, how can I put a green arrow on the left side of the number margin and a red arrow on the ride side. This is the code that is used for putting a marker on the left side but not the ride side:

#xA;
0 投票
1 回答
20 浏览

python - 如何在 QScintilla PyQt5 中删除键入的字符(前一个字符)?

我知道一种删除方法可以self.qsci.cut(),并且我知道您可以使用不同的语言使用该DeleteBack()方法,但是如何删除键入的字符event.text()或仅删除 PyQt5 中的前一个字符。预先感谢您的帮助!

0 投票
0 回答
23 浏览

python - 如何在 Qscintilla PyQt5 中自定义 SloppyBracletMatch 背景和前景?

我想知道如何qsci.setBraceMatching(QsciScintilla.SloppyBraceMatch)在 pyqt5 qscintilla 中进行自定义。我已经尝试更改默认词法分析器并自定义样式表,但它不起作用。预先感谢您的帮助!