sublime设置鼠标快捷键

1.打开沙盒目录

sublime设置鼠标快捷键_第1张图片

2.新建文件

sublime设置鼠标快捷键_第2张图片3.编辑

我个人常用的 ,也跟jb全家桶是一致的

[
	// ctrl+鼠标左键 跳转定义
	{
		"button": "button1",
		"count": 1,
		"modifiers": ["ctrl"],
		"press_command": "drag_select",
		"command": "goto_definition"
	},
	// 鼠标中键	跳转定义
	{
		"button": "button3",
		"count": 1,
		"command": "goto_definition"
	},
	// 侧位键 往后
	{
		"button": "button4",
		"count": 1,
		"command": "jump_back"
	},
	// 侧位键 往前
	{
		"button": "button5",
		"count": 1,
		"command": "jump_forward"
	},
]

 

 

你可能感兴趣的:(随笔)