self.childpid = None
self.history = [""]
self.isactive = True
+ self.lastc, self.lastr = 0,0
#Start debugger
self.clientCmd = clientCmd
assert( self.getHistoryLen()>0 )
c,r = term.get_cursor_position()
- text = self.get_text_range(self.getHistoryLen()-1,0,r,-1,lambda *w:True)
+ text = self.get_text_range(self.lastr,self.lastc,r,c-1,lambda *w:True)
+ self.lastc, self.lastr = c,r
#Remove annoying \n at the end
assert(text[-1] == "\n")
lines = string.split(text, "\n")
#Remove the incomplete line
- del self.history[-1]
- #Add lines to history. The last line contains no "\n" at the end!
- self.history += [l+"\n" for l in lines[:-1]]
- self.history += [lines[-1]]
-
- assert(r == self.getHistoryLen()-1)
+ self.history[-1] += lines[0]
+ self.history += lines[1:]
def waitForNewline(self):