コード例 #1
0
 def run(self, *args):
     if GOTO_STACK:
         file_name, lineno, colno = GOTO_STACK.pop()
         path = "%s:%d:%d" % (file_name, lineno, colno)
         self.window.open_file(path, sublime.ENCODED_POSITION)
コード例 #2
0
 def run(self, *args):
     if GOTO_STACK:
         file_name, lineno = GOTO_STACK.pop()
         path = file_name + ":" + str(lineno)
         self.window.open_file(path, sublime.ENCODED_POSITION)
コード例 #3
0
 def run(self, *args):
     if GOTO_STACK:
         file_name, lineno, colno = GOTO_STACK.pop()
         path = "%s:%d:%d" % (file_name, lineno, colno)
         self.window.open_file(path, sublime.ENCODED_POSITION)
コード例 #4
0
 def run(self, *args):
     if GOTO_STACK:
         file_name, lineno = GOTO_STACK.pop()
         path = file_name + ":" + str(lineno)
         self.window.open_file(path, sublime.ENCODED_POSITION)