Zend certified PHP/Magento developer

Supress #f in Visual Studio from opening “Feedback Hub”

I have the following autohotkey script:

SetTitleMatchMode 2

#f::
if WinExist("Mozilla Firefox")
    WinActivate
    return
#v::
if WinExist("Microsoft Visual Studio")
    WinActivate
    return

#f shortcut should focus Firefox and #v shortcut should focus VS. And it works except when my VS window is in focus and I press #f to switch to Firefox. Instead of switching to Firefox, #f shortcut launches Feedback Hub.

I don’t want that.

How can fix this problem?