此快捷方式 ctrl + 单击的默认行为是创建多个游标,但在我的情况下,它的行为类似于goto_definition
命令,然后我打开了mousemap文件,我看到命令设置为goto_definition
:
{
"button": "button1",
"count": 1,
"modifiers": ["ctrl"],
"press_command": "drag_select",
"command": "goto_definition"
}
我不知道怎么做?任何人都可以告诉我如何改变它通常是吗?
答案 0 :(得分:0)
两件事对我有用,首先,如果完全删除设置,或者第二,如果我用此设置替换设置:
{
"button": "button1", "count": 2,
"modifiers": ["ctrl"],
"press_command": "drag_select_callback",
"press_args": {"by": "words"}
}