Notepad ++的Python脚本:SetStyle

时间:2018-10-07 10:02:22

标签: python python-2.7

我使用以下模块:Phyton script for Notepad++
当我收到以下字词时,我想应用一种样式: test
我有这个文件:

Ok
Ok
test
Ok
test
Ok
Ok

在我的代码下面:

console.clear()
editor.styleSetFore(9, (0,0,255))
editor.styleSetBold(9, 1)
editor.beginUndoAction()

for line in range(0, editor.getLineCount()):
    l = editor.getLine(line)
    if l.strip() == "test":
        editor.replaceLine(line, editor.addStyledText(Cell(l, [9])))

editor.endUndoAction()

这里是我所拥有的,根据光标的位置:

Ok
Ok
0
Ok
0
Ok
Ok
0
test
test

您可以帮忙吗?

0 个答案:

没有答案