Ejemplo n.º 1
0
 def start(self):
     self.view = vim_plugin_view(service=self)
     self.__cw = vimcom.communication_window(self)
     self.view.show_all()
     self.get_service('buffermanager').\
         single_view.widget.pack_start(self.view, expand=False)
     self.get_service('editormanager').events.emit('started')
Ejemplo n.º 2
0
 def start(self):
     self.view = vim_plugin_view(service=self)
     self.__cw = vimcom.communication_window(self)
     self.view.show_all()
     self.get_service('buffermanager').\
         single_view.widget.pack_start(self.view, expand=False)
     self.get_service('editormanager').events.emit('started')
Ejemplo n.º 3
0
 def cmd_start(self):
     self.__cw = vimcom.communication_window(self)
     self.create_single_view()
     if self.opt('general', 'use_cream'):
         command = 'cream'
     else:
         command = 'gvim'
     self.single_view.run(command)
Ejemplo n.º 4
0
 def cmd_start(self):
     self.__cw = vimcom.communication_window(self)
     self.create_single_view()
     if self.opt('general', 'use_cream'):
         command = 'cream'
     else:
         command = 'gvim'
     self.single_view.run(command)