zoukankan      html  css  js  c++  java
  • Sublime插件

    1.SideBarEnhancements

    根据图示打开设置侧边栏增强插件的快捷键文件,键入如下内容即可更加快捷键用预设程序打开文件(注意修改打开程序的本地路径):

    [
    { "keys": ["ctrl+`"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },//打开控制台命令,系统的不起作用了,在此增加此快捷键修复此功能 
    
    /*{ "keys": ["alt+f12"], "command": "side_bar_open_in_browser", "args":{"paths":[], "type":"production", "browser":""} },*/
    
    { "keys": ["ctrl+shift+alt+p"], "command": "copy_path" },//ctrl+shift+c与颜色选择插件冲突,修改
    
    //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": "D://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":".*" } },
    
    ]
    

      

  • 相关阅读:
    [LC] 270. Closest Binary Search Tree Value
    [LC] 452. Minimum Number of Arrows to Burst Balloons
    [LC] 494. Target Sum
    [LC] 350. Intersection of Two Arrays II
    [LC] 349. Intersection of Two Arrays
    [LC] 322. Coin Change
    scala--函数和闭包
    scala-- 内建控制结构
    scala--函数式对象
    scala --操作符和运算
  • 原文地址:https://www.cnblogs.com/ICE_melt/p/7135806.html
Copyright © 2011-2022 走看看