zoukankan      html  css  js  c++  java
  • Mac OSX sublime text2 各种快捷键

     Mac 快捷键 https://support.apple.com/zh-cn/HT201236

     Preferences -> Key Bindings - User

    [
    	{ "keys": ["end"], "command": "move_to", "args": { "to": "eol"} },
    	{ "keys": ["home"], "command": "move_to", "args": { "to": "bol"} },
    	{ "keys": ["ctrl+s"], "command": "save" },
    	{ "keys": ["ctrl+w"], "command": "close" },
    	{ "keys": ["ctrl+x"], "command": "cut" },
    	{ "keys": ["ctrl+c"], "command": "copy" },
    	{ "keys": ["ctrl+v"], "command": "paste" },
    	{ "keys": ["ctrl+z"], "command": "undo" },
    	{ "keys": ["ctrl+y"], "command": "redo_or_repeat" },
    	{ "keys": ["ctrl+f"], "command": "show_panel", "args": {"panel": "find"} },
    	{ "keys": ["ctrl+b"], "command": "build" },
    	{ "keys": ["ctrl+a"], "command": "select_all" },
    	{ "keys": ["alt+c"], "command": "toggle_case_sensitive", "context":
    		[
    			{ "key": "setting.is_widget", "operator": "equal", "operand": true }
    		]
    	},
    	{ "keys": ["alt+r"], "command": "toggle_regex", "context":
    		[
    			{ "key": "setting.is_widget", "operator": "equal", "operand": true }
    		]
    	}
    ]

    http://ju.outofmemory.cn/entry/22716

    +V d2h5X251bGw= 请备注:from博客园
  • 相关阅读:
    css的position:absolute
    css元素的margin,padding
    Python---Flask--04--SQLAlchemy
    Python---Flask--03--Web表单
    Python---Flask--02--模板
    Python---Flask--01
    国外程序员整理的 PHP 资源大全
    PHP7 通过yum安装
    Node的安装和进程管理
    在php中实现Redis的订阅与发布
  • 原文地址:https://www.cnblogs.com/hangj/p/4721216.html
Copyright © 2011-2022 走看看