zoukankan      html  css  js  c++  java
  • sublime 复制黏贴等快捷键修改

    在 keyboard-binding user 里 增加个人配置来覆盖默认配置

    [
    
    	{ "keys": ["ctrl+z"], "command": "undo" },
    	{ "keys": ["ctrl+shift+z"], "command": "redo" },
    	{ "keys": ["ctrl+y"], "command": "redo_or_repeat" },
    	{ "keys": ["ctrl+u"], "command": "soft_undo" },
    	{ "keys": ["ctrl+shift+u"], "command": "soft_redo" },
    
    	{ "keys": ["ctrl+x"], "command": "cut" },
    	{ "keys": ["ctrl+c"], "command": "copy" },
    	{ "keys": ["ctrl+v"], "command": "paste" },
    	{ "keys": ["ctrl+shift+v"], "command": "paste_and_indent" },
    	{ "keys": ["ctrl+k", "ctrl+v"], "command": "paste_from_history" },
    	{ "keys": ["ctrl+option+v"], "command": "paste_from_history" },
    	{ "keys": ["ctrl+a"], "command": "select_all" },
    	{ "keys": ["ctrl+shift+l"], "command": "split_selection_into_lines" },
    	{ "keys": ["ctrl+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false} },
    	{ "keys": ["ctrl+shift+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": true} },
    	{ "keys": ["ctrl+f"], "command": "show_panel", "args": {"panel": "find", "reverse": false} },
    	{ "keys": ["ctrl+alt+f"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
    	{ "keys": ["ctrl+alt+e"], "command": "replace_next" },
    	{ "keys": ["ctrl+g"], "command": "find_next" },
    	{ "keys": ["ctrl+shift+g"], "command": "find_prev" },
    	{ "keys": ["ctrl+e"], "command": "slurp_find_string" },
    	{ "keys": ["ctrl+shift+e"], "command": "slurp_replace_string" },
    ]
    
  • 相关阅读:
    KEIL5.25生成.bin文件步骤
    【转】树莓派网线直连笔记本电脑
    由编译器指定数组长度带来的一个问题
    【转】C/C++位域结构深入解析
    【转】大小端存储模式精解
    【转】树莓派入门之装系统
    【转】树莓派Raspberry Pi
    stm32的双向io口
    小记之while循环条件的操作位置
    【转】浮点数在计算机中存储方式
  • 原文地址:https://www.cnblogs.com/IamThat/p/4374452.html
Copyright © 2011-2022 走看看