How do I delete typed character (previous character) in QScintilla PyQt5?

83 views Asked by At

I know that a method of deleting can be self.qsci.cut() and I know in a different language you can use the DeleteBack() method, but how can I remove a typed character event.text() or just simply remove the previous character in PyQt5. Thank you in advance for your help!

1

There are 1 answers

0
musicamante On BEST ANSWER

SendScintilla provides the interface to scintilla commands:

editor = Qsci.QsciScintilla()
# ...
editor.SendScintilla(Qsci.QsciCommand.DeleteBack)