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

相关文章:

  • 2021-08-02
  • 2022-12-23
  • 2022-12-23
  • 2021-07-07
  • 2021-09-28
  • 2021-09-20
  • 2022-12-23
猜你喜欢
  • 2021-11-18
  • 2021-12-18
  • 2021-06-22
  • 2022-12-23
  • 2021-11-17
  • 2021-08-08
  • 2021-12-28
相关资源
相似解决方案