快速解决办法
在sublime ->浏览插件目录->再进入Anaconda\anaconda_server\commands
打开goto.py,内容如下:
# Copyright (C) 2013 - Oscar Campos <oscar.campos@member.fsf.org>
# This program is Free Software see LICENSE file for details
from .base import Command
class Goto(Command):
"""Get back a python definition where to go"""
def __init__(self, callback, line, col, uid, script):
self.script = script
self.line = line
self.col = col
super(Goto, self).__init__(callback