sublime中安装了新版THINKPHP插件,无法点选的解决方法

浏览:968 发布日期:2013/07/18 分类:技术分享

安装了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+鼠标点选效果
最佳答案
评论( 相关
后面还有条评论,点击查看>>