Visual Studio 代码扩展 - 鼠标中键点击进入定义
Visual Studio Code extension - mouse middle click go to definition
我正在搜索类似这样的 VS Code 扩展:
https://marketplace.visualstudio.com/items?itemName=norachuga.MiddleClickDefinition
在WebStorm中原生支持,想换成VSC实在是太烦了
我没有在 google.
上找到任何结果
是否有关于如何创建一个好的教程或代码?
作者信用:https://github.com/danielsamuels
对于那些正在寻找短期解决方案的人,我创建了一个 AutoHotkey 脚本,它提供 middle-click 转到定义行为:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#IfWinActive ahk_exe Code.exe
~MButton::
MouseGetPos, xpos, ypos
if (ypos >= 87) {
SendInput,{Click}{F12}
}
return
将以上内容复制到vscode-f12-go-to-definition.ahk文件中,并运行。您会在系统托盘中看到一个绿色的 H 图标,表示它正在 运行ning。
我正在搜索类似这样的 VS Code 扩展:
https://marketplace.visualstudio.com/items?itemName=norachuga.MiddleClickDefinition
在WebStorm中原生支持,想换成VSC实在是太烦了
我没有在 google.
上找到任何结果
是否有关于如何创建一个好的教程或代码?
作者信用:https://github.com/danielsamuels
对于那些正在寻找短期解决方案的人,我创建了一个 AutoHotkey 脚本,它提供 middle-click 转到定义行为:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#IfWinActive ahk_exe Code.exe
~MButton::
MouseGetPos, xpos, ypos
if (ypos >= 87) {
SendInput,{Click}{F12}
}
return
将以上内容复制到vscode-f12-go-to-definition.ahk文件中,并运行。您会在系统托盘中看到一个绿色的 H 图标,表示它正在 运行ning。