在sublime-text中设置浏览器预览

Posted 网络虫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在sublime-text中设置浏览器预览相关的知识,希望对你有一定的参考价值。

配置在Chrome,Firefox中打开

安装 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-text中设置浏览器预览的主要内容,如果未能解决你的问题,请参考以下文章

尝试在 SurfaceView 中设置时拉伸相机预览

如何在预览中设置环境对象

如何在android中设置相机预览的大小

如何在播放前在videoview中设置预览图像

在 android 中设置显示方向后,相机相机预览不正确

在通常通过调用数据库获取来处理的 SwiftUI 中设置预览数据的最佳方法是啥?