norachuga / MiddleClickDefinition

MiddleClickDefinition Visual Studio extension
MIT License
9 stars 5 forks source link

VS 2022 Preview (17.9) breaks #6

Open Lovasz-Akos opened 11 months ago

Lovasz-Akos commented 11 months ago

Since updating to pre 17.9.x MiddleClickDefinition doesn't work at all sadly. Peek, go to impl/def, on any keybind doesn't work.

Is there any data I can provide to help debug this?

Lovasz-Akos commented 8 months ago

17.10 still broken

ryanbuening commented 8 months ago

Until this gets resolved, you can implement similar functionality using AutoHotkey with the script below:

#HotIf WinActive("ahk_exe devenv.exe",)
~MButton::
{
    MouseGetPos(&xpos, &ypos)
    if (ypos >= 87 && xpos >= 350)
    {
        SendInput("{Click}{F12}")
    }
    return
}

You may need to update the ypos and xpos values depending on your layout.

iMobCoding commented 8 months ago

Can we please address this issue?

gokcankrc commented 7 months ago

For those having this issue, does using VS 2019 work?

dnxit commented 3 months ago

@norachuga any plans on fixing this issue, I really like this extension but unfortunately, it's not working anymore :(