如何在自定义用户键映射中嵌入当前文件路径?我参考了这个文档:
http://sublimetext.info/docs/en/reference/build_systems.html
已弃用,但我没有看到$file_path
变量的等效文档,我需要在最新文档的keymap中使用该文档。我没有运气。我的键盘映射如下所示(尝试使用旗帜启动Google Chrome以打包我的应用程序):
{
"keys": [
"shift+ctrl+g"
],
"command": "exec",
"args": {
"cmd": [
"c:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
"--pack-extension=${file_path}"
]
}
}
答案 0 :(得分:1)
最新和更新的文档通常可在此处找到:http://docs.sublimetext.info/en/latest/reference/build_systems.html
您可以切换侧边栏底部的版本开关。虽然$file_path
变量仍然存在,但它可能应该有效。您可以尝试删除包装大括号{
和}