sublime text 3怎么设置默认打开浏览器

sublime text 3怎么设置默认打开浏览器,第1张

安装 SideBarEnhancements

然后通过ctrl + k, ctrl + b打开侧边栏,在侧边栏的文件中右击,找到 open width ->edit applications

然后在这里边设置firefox打开的方式。

application : 路径要修改为自己默认安装的路径。

[

{"id": "side-bar-files-open-with",

"锋绝差children":

[

//application firefox

{

"caption": "firefox",

"id": "side-bar-files-open-with-firefox",

"command": "side_bar_files_open_with",

"args": {

"paths": [],

"application": "D:\\Program Files\\Mozilla Firefox\\firefox.exe",

"extensions":".*" //any file with extension

}

},

{"caption":"-"},

{

"caption": "chrome",

"id": "side-bar-files-open-with-chrome",

"command": "side_bar_files_open_with",

"args": {

"paths": [],

"application": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",

"extensions":".*" //any file with extension

}

}

]

}

]

配置在IE中打开

Key bindings ->User

[

{ "keys": ["ctrl+shift+c"], "command": "copy_path" },

{ "keys": ["alt+f12"], "command": "open_in_browser" },

{ "keys": ["f12"], "command": "side_bar_files_open_with",

"args": {

"paths": [],

"application": "D:\\Program Files\\Mozilla Firefox\\firefox.exe",

"extensions":".*" //any file with extension

} },

{ "keys": ["ctrl+f12"], "银皮command": "side_bar_files_open_with",

"args": {

"paths": [],

"application": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",

"extensions":".*" //any file with extension

}

}

]

如果是其它浏览器,可以 ctrl+shift+c 路径,然后直接在地址栏粘贴。

这样就可以用这三个键在浏览中预览页面了:

F12 : Firefox

alt + F12 : IE

ctrl + F12 : chrome

当然,你也可以配置,其它配置器用这样的宏绝方式预览。

不需要设置,sublime text3默认是调用系统的默认浏览器来显示html文件的。使用sublime text3调用浏览器来显示html页面的方法如下:1、打开需要显示或者预览的html文件。2、直接右击编辑器区域选择“在浏览器中打开”纯凳即可调用浏览器来打开html文件如下图:补充知识:Sublime Text 是一个代码编辑器(Sublime Text 2是收费软件,但可做亮旅以无限期试用),也是HTML和散文先进的文本编辑器。Sublime Text是由程序员Jon Skinner于2008年1月份所开发出来,它最初被设计为一个具有丰富扩展功能的。Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图键大,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等 *** 作系统。

在 Sublime Text 3 中,安装 SideBarEnhancements 侧边栏增强插件。

SideBarEnhancements 插件安装完成后,首先为 SideBarEnhancements 指定默认浏览器。打开 " Preference -->Package Settings -->Side Bar -->Settings User-User"

在打开的文件中添加:

{

"default_browser": "chrome" //one of this list: firefox, aurora, chrome, canary, chromium, opera, safari

}

默认的浏览器可以是列表中的任意一种,在这里我选择的是Chrome,可以根据自己的情况进行选择。

为 SideBarEnhancements 指定默认localhsot目录。在侧边栏任意文档上点击鼠标右键,选择 "Project -->Edit Preview URLs"

在打开的文件中添加如下内容:

{

"E:/WEBSITE/HelloWorld/":{

"url_testing": "http://localhost:8008/",

"url_production": "http://equipmentmgr.sinaapp.com/"

}

}

1、"E:/WEBSITE/HelloWorld/" 是项目在磁盘中的路径,请修改岁消为你的项目地址

2、"url_testing" 是你本地的 localhost 地址

3、 "url_production" 是项目线上地址

请根据自己的情况进行修改。

为浏览器绑乎逗知定热键。

在 Sublime Text 3 中,打开 "Preference -->Package Settings -->Side Bar -->key Bindings-User",在打开的文件中添加如下内容:

[

{

"keys": ["alt+f12"],

"command": "side_bar_open_in_browser",

"args": {

"paths": [],

"type": "testing",

"browser": ""

}

}

]

在此,我为浏览器绑定的热键是 "alt + F12",可以根据自己的使用习惯进行指乎修改。

至此,所有设置已经完成,可以在页面中按相应的热键,调用在配置文件中设置好的浏览器进行浏览。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11994355.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存