Example #1
0
 def move_to_next_word(self, doc: QTextDocument, cursor: QTextCursor):
     """Moves cursor to next word"""
     while not cursor.isNull() and not cursor.atEnd():
         if doc.characterAt(cursor.position()) not in self.ignored_chars:
             return
         cursor.movePosition(QTextCursor.NextCharacter)