if self.file!=None:
try:
- cmd = 'gvim -c ":GDBLoadConfig" %s' % (self.file)
+ cmd = 'gvim --servername pygdb -c ":GDBLoadConfig" %s' % (self.file)
os.system(cmd)
except OSError:
dialog = gtk.MessageDialog(None, \
self.fillConfiguration(conf)
conf.store(".pygdb.conf")
+ os.system('gvim --servername pygdb --remote-send ":GDBLoadConfig<CR>"')
+
+
Smaller requests
+ - Scrollbar for terminals
- Hightlight current line in little source field
- Backtrace frame
- Button for step out of function ('bt', followed by 'advance')
Bigger requests:
- bidirectional, immediate communication with vim:
- updating execution line, breakpoints when changing.
+ updating breakpoints when setting in vim.