zoukankan      html  css  js  c++  java
  • 配置在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 的全局配置文件 Preferences.sublime-settings 中找到 word_separators 字段,删掉其中的 - 即可双击选中一连串的多个单词。

  • 相关阅读:
    favorite 单词学习 主要是发音 fa vor it 注意 ri不连读 是自然带出来的r的尾音
    echart 带表格
    正则 小于等于1 小数最多两位
    period 发音 per + iod 没有ri音 (per=round od=hod=way)
    SelectZenEmpty 下拉框 支持 最大长度 超出... vue 组件
    expensive pens 就是 spend 花费 pend 就是 to pay
    reciterdoc 资料库 支持中文搜索了。 vuepresspluginfulltextsearch(用一半)
    react 中 动态添加 class,防止图片 重复加载, 主要是 backgroundimage的二次加载会有新请求,和图片的闪烁
    vscode 格式化 vue 和 js代码 vetur prettier beautify
    sign 单词学习 本质:去分开
  • 原文地址:https://www.cnblogs.com/eaysun/p/4035197.html
Copyright © 2011-2022 走看看