如何在Sublime Text 3中创建一个构建系统,其中"cmd"
被替换为shebang(如果存在)?
更具体地说,是否有办法改变Python构建系统以使用shebang中指定的Python版本,如果没有shebang,则使用默认值?
答案 0 :(得分:1)
Sublime构建系统有一个名为target
的选项,它指定要调用以执行构建的WindowCommand
。默认情况下,这是内部exec
命令。您可以创建自己的命令来检查shebang的文件并使用该解释器或其他默认值。
例如(警告:我不是非常精通Python,所以这可能非常难看):
import sublime, sublime_plugin
class ShebangerCommand(sublime_plugin.WindowCommand):
def parseShebang (self, filename):
with open(filename, 'r') as handle:
shebang = handle.readline ().strip ().split (' ', 1)[0]
if shebang.startswith ("#!"):
return shebang[2:]
return None
def createExecDict(self, sourceDict):
current_file = self.window.active_view ().file_name()
args = dict (sourceDict)
interpreter = args.pop ("interpreter_default", "python")
exec_args = args.pop ("interpreter_args", ["-u"])
shebang = self.parseShebang (current_file)
args["shell_cmd"] = "{} {} \"{}\"".format (shebang or interpreter,
" ".join (exec_args),
current_file)
return args
def run(self, **kwargs):
self.window.run_command ("exec", self.createExecDict (kwargs))
您可以将此保存在Packages/User
中作为python文件(例如shebanger.py
)。
这将创建一个名为shebanger
的新命令,用于收集已给出的参数,检查触发构建的窗口的当前活动视图中的文件,以查看第一行是否为shebang,然后合成exec
命令所需的参数并运行它。
由于默认的python构建系统假定它正在构建当前文件并将-u
作为参数传递,因此该命令也会复制。但请注意,此代码不是100%正确,因为shebang行中的任何参数都将被忽略,但您可以得到一般的想法。
在使用中,您可以将默认的Python.sublime-build
文件修改为如下所示:
{
// WindowCommand to execute for this build
"target": "shebanger",
// Use this when there is no shebang
"interpreter_default": "python",
// Args to pass to the interpreter
"interpreter_args": ["-u"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf-8"},
"variants":
[
{
"name": "Syntax Check",
"interpreter_args": ["-m py_compile"],
}
]
}
请注意,在变体中,我们覆盖了解释器参数的内容;如果需要,你也可以覆盖那里的默认解释器。
答案 1 :(得分:0)
如果认为使用标准.sublime-build
文件执行此操作的唯一方法是将文件传递给另一个脚本,然后解析shebang并将其传递给正确的Python版本。
或者,您可以指定build variants,但是您必须手动选择所需的构建变体。
答案 2 :(得分:0)
我的python.sublime-build
{
"cmd": ["py", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"shell":true
}
在Windows中,我使用py启动器来检测根据shebang的版本