def performDoOperation(self):
     """ Perform the action """
     operation = InsertTabOperation(self.cursor, self.textStore, self.settings)
     operation.perform()
 def performUndoOperation(self):
     """ Undo the remove tab action """
     operation = InsertTabOperation(self.cursor, self.textStore, self.settings)
     operation.perform()