• Sublime keymap 个性修改


    [
        // 保存全部
        {"keys": ["ctrl+alt+s"], "command": "save_all"},
    
        // 删除行
        { "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
    
        // 在文件夹中查找
        { "keys": ["ctrl+h"], "command": "show_panel", "args": {"panel": "find_in_files"} },
    
        // 跳转到指定行
        { "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
    
        // 格式化代码
        {"keys": ["ctrl+q"], "command": "reindent"},
            
        // 打开指定文件
        { "keys": ["ctrl+shift+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": false} },
    
        // 折叠展开代码 "keypad_minus 表示小键盘的 - 号"
        { "keys": ["ctrl+shift+keypad_minus"], "command": "fold" },
        { "keys": ["ctrl+shift+keypad_plus"], "command": "unfold" },
    ]
    

      

  • 相关阅读:
    整合规则引擎urule
    vue学习
    发送put请求,get请求
    jpa自定义字段
    spring的3种配置方式
    netty
    springsercurity和shiro
    git报错
    Scrapy全站数据爬取
    python操作Excel模块openpyxl
  • 原文地址:https://www.cnblogs.com/qq917937712/p/6202063.html
Copyright © 2020-2023  润新知