安装了yangweijie大神开发的THINKPHP插件后发现原来自带的ctrl+鼠标点选功能失效..
自带的点选效果如下图:

后来想到可能是快捷键冲突,就找了下keymap文件,但没找到..只找到mousemap文件,打开一看如下:
[
{ "button": "button1", "modifiers": ["ctrl"], "command": "goto_definition" },
{ "button": "button1", "modifiers": ["alt"], "command": "goto_php_document" }
]看到这里应该明白了..将上述的CTRL改为其它即可,如:[
{ "button": "button1", "modifiers": ["shift"], "command": "goto_definition" },
{ "button": "button1", "modifiers": ["alt"], "command": "goto_php_document" }
]保存即可实现CTRL+鼠标点选效果最佳答案