sublime text3支持类函数跳转

打开sublime text3,点击首选项下面的浏览插件,进入到packages目录:
sublime text3支持类函数跳转_第1张图片
打开User目录,看有没有Default (Windows).sublime-mousemap这个文件,如果没有,则新建一个该文件:
sublime text3支持类函数跳转_第2张图片
并输入如下内容即可:
[
{
“button”: “button2”,
“count”: 1,
“modifiers”: [“ctrl”],
“command”: “jump_back”
},

{
“button”: “button1”,
“count”: 1,
“modifiers”: [“ctrl”],
“press_command”: “drag_select”,
“command”: “goto_definition”
}
]
保存,ctrl键+鼠标左键即可实现类跳转。

你可能感兴趣的:(sublime,text3)