sublime.py 在哪里?
Sublime Text2 文本编辑器通过 python 脚本进行扩展,使用这些模块:
import sublime, sublime_plugin
我搜索了我的计算机并找到了 sublime_plugin.py 文件。 但是 sublime.py 在哪里?
Sublime Text2 text editor is extended via python scripts, using these modules:
import sublime, sublime_plugin
I've searched my computer and found sublime_plugin.py
file.
But where is sublime.py
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信当您通过控制台调用插件时,Sublime 是动态提供的。
请记住,导入不一定是物理 .py 文件,它可以是库或内存中的表示形式。
我找到了一个关于经常与导入相关的困惑的不错的参考,它现在有点旧了,但我相信它仍然相关:
http://effbot.org/zone/import-confusion.htm
编辑:只是为了确认这一点,我已经检查过,Python2.6 运行时嵌入在 Sublime 的可执行文件中,并且 Sublime 模块被定义在里面 那里。
I believe that Sublime is provided dynamically when you call the plugin via the console.
Remember that an import doesn't have to be a physical .py file, it can be a library or an in-memory representation.
I found a decent reference to the confusions often related to Import, it's a little old now but I believe it's still relevant:
http://effbot.org/zone/import-confusion.htm
Edit: Just to confirm that, I've checked and the Python2.6 runtime is embedded inside the executable for Sublime, and the Sublime module is defined inside there.