我正在尝试创建一个构建系统,它将检测扩展名为.txt的文件,然后使用我提供的程序。我知道这与范围有关,但我似乎无法让它发挥作用。
“ SELECTOR - 在工具|时使用构建系统|自动设置为true。 Sublime Text使用此范围选择器为活动视图查找适当的构建系统。“ - http://docs.sublimetext.info/en/sublime-text-3/reference/build_systems.html
{"cmd": ["cmd", "/k", "python C:\\Users\\Daniel\\Documents\\MyProgramming\\NotesTODO\\notesTODOs.py $file", "$file"],
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"selector": "scope.txt",
"shell": "true"}
提前致谢。
答案 0 :(得分:2)
试试这个:
{
"cmd": ["cmd", "/k", "python C:\\Users\\Daniel\\Documents\\MyProgramming\\NotesTODO\\notesTODOs.py", "$file"],
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"selector": "text.plain",
"shell": "true"
}
首先,您在$file
行中列出了两次"cmd"
,因此我删除了一行。其次,纯文本的范围是text.plain
(还有text.html
,text.tex.latex
等。你可能不需要file_regex
,但我认为它不会伤害任何东西,所以这就是你的召唤。