本文主要更新从事前端开发过程当中主要用到的一些插件,基于win10且为64位的操作系统。
SideBarEnhancements:增强侧边栏的插件,可以定义不同的快捷键打开不同的浏览器。
如下图所示,选择Key Bindings-User,然后把下方的代码粘贴进去
、、、
[
/*{ "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":".*" //匹配任何文件类型
}
},
//opera
{ "keys": ["f3"], "command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C://Program Files (x86)//Opera//launcher.exe",
"extensions":".*"
}
},
//ie
{ "keys": ["f4"], "command": "side_bar_files_open_with",
"args": {
"paths": [],
"application": "C://Program Files (x86)//Internet Explorer//iexplore.exe",
"extensions":".*"
}
},
]
、、、