Home | History | Annotate | Download | only in python-vim-lldb

Lines Matching full:command

78     """ Returns a list of viable completions for command a with length l and cursor at p  """
104 """ Perform a step command and block the UI for eventDelayStep seconds in order to process
128 def doSelect(self, command, args):
131 return self.doCommand(command, args, "select" != a[0], True)
134 """ Handle 'process' command. If 'launch' is requested, use doLaunch() instead
135 of the command interpreter to start the inferior process.
197 """ Pass target command to interpreter, except if argument is not one of the valid options, or
231 """ Handle 'contiue' command.
242 """ Handle breakpoint command with command interpreter, except if the user calls
292 def getCommandResult(self, command, command_args):
293 """ Run cmd in the command interpreter and returns (success, output) """
295 cmd = "%s %s" % (command, command_args)
300 def doCommand(self, command, command_args, print_on_success = True, goto_file=False):
302 (success, output) = self.getCommandResult(command, command_args)
310 def getCommandOutput(self, command, command_args=""):
311 """ runs cmd in the command interpreter andreturns (status, result) """
313 cmd = "%s %s" % (command, command_args)
368 for command a with length l and cursor at p.
372 vim.command('return "%s%s"' % (separator.join(results), separator))
381 vim.command('return "%s%s"' % (separator.join(results), separator))