sidebarenhancement安装后的open with选择chrome出现如下问题,求帮助
安装的sublime text 3,已经把文件放到了project下面,用浏览器打开出现下图:
而我的配置是这样写的:
确定chrome的路径是对的,如下图:
安装的sublime text 3,已经把文件放到了project下面,用浏览器打开出现下图:
而我的配置是这样写的:
确定chrome的路径是对的,如下图:
2016-04-14
[
/*{ "keys": ["alt+f12"],
"command": "side_bar_open_in_browser",
"args":{"paths":[], "type":"production", "browser":""}
},*/
{ "keys": ["ctrl+shift+c"], "command": "copy_path" },
//chrome
{ "keys": ["f1"], "command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C://Program Files (x86)//Google//Chrome//Application//chrome.exe",
"extensions":".*"
}
},
//firefox
{ "keys": ["f2"], "command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C://Program Files (x86)//Mozilla Firefox//firefox.exe",
"extensions":".*" //匹配任何文件类型
}
},
//ie
{ "keys": ["f3"], "command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C://Program Files//Internet Explorer//iexplore.exe",
"extensions":".*"
}
},
]
举报