sublime.py 在哪里?

发布于 2024-12-07 21:14:20 字数 170 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗藏城府 2024-12-14 21:14:20

我相信当您通过控制台调用插件时,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文