fixed but about cond. breakpoint detection (?)
[pygdb.git] / DbgTerminal.py
index 8fc569fcf1821588cafb71f08b15ed8ab8025745..ab365deb4245bde09116810e2ecdea9c84cbe779 100644 (file)
@@ -199,6 +199,9 @@ class DbgTerminal (vte.Terminal):
        def setStepin(self):
                raise NotImplementedError()
 
+       def setStepout(self):
+               raise NotImplementedError()
+
        def setQuit(self):
                raise NotImplementedError()
 
@@ -214,6 +217,9 @@ class DbgTerminal (vte.Terminal):
        def listCodeSnippet(self):
                raise NotImplementedError()
 
+       def getBacktrace(self):
+               raise NotImplementedError()
+
        def waitForPrompt(self, his):           
                raise NotImplementedError()
 
@@ -239,7 +245,7 @@ def quitHandler(*w):
 
 
 def updateVim():
-       os.system('gvim --servername pygdb --remote-send ":GDBLoadConfig<CR>"')
+       os.system('gvim --servername pygdb --remote-send "<ESC> :GDBLoadConfig<CR>"')
 
 
 def relToAbsPath(absfile, relfile):