Exemplo n.º 1
0
 def perform(self):
     """ Perform the Action """
     line = self.cursor.line
     
     nextLineText = self.textStore.text[line+1]
     self.textStore.text[line] += nextLineText
     self.textStore.text = concatenate(self.textStore.text, line+1, line+2, filler = [])
 def perform(self):
     """ Perform the Action """
     textLine = self.textStore.text[self.cursor.line]
     col = self.cursor.col
     
     self.textStore.text[self.cursor.line] = concatenate(textLine, col, col+1)