Jump to content
  • Sign Up

How to disable keyboard shortcuts?


Recommended Posts

I play wvw, and things can get busy there. I have physically unplugged the Windows key, that is solved. But some other key combinations puts GW2 to background, and opens the mail software and the browser (Thunderbird , Firefox).

 

How to disable shortcut key combos? Not all, but just Firefox, Thunderbirds, and Windows help application. I don't need to launch applications via key combos.

 

I have once opened an app which listed and allowed to change key combos, but don't remember if it was in GNU/Linux. I did not find anything in Windows.

 

Link to comment
Share on other sites

I use [Autohotkey](https://autohotkey.com/download/ "Autohotkey") for killing keys, for example the left Windows key, which is kind of annoying to press in accident while playing GW2.

 

#Warn

#SingleInstance, Force

#NoEnv

 

GroupAdd prog, ahk_exe gw2.exe

GroupAdd prog, ahk_exe Gw2-64.exe

 

#IfWinActive ahk_group prog

 

; CTRL-ALT-G: Trading post listing mode

^!g::Send I am Evon Gnashblade

 

; ignore left Windows key

LWin::return

 

If you want to kill all the special keys, look their codes up in the Autohotkey documentation and duplicate the LWin::return line with the corresponding code instead of LWin.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...