How to disable input language key combination in one particular program?

0

I am using CTRL+SHIFT key combination for changing input language. Problem i have is that in one application i use this key combination is part of several other combinations and too often i switch language by accident.

Is there a way to disable language switching or key combination CTRL+SHIFT for one application?

Please, don't suggest changing my input lang key combination - i tried it and because i have been using CTRL+SHIFT for over fifteen years i just couldn't get used to the new one.

alexeit

Posted 2011-08-02T03:56:02.330

Reputation: 451

Answers

1

I would use an autohotkey script.

#IfWinActive, "Notepad"
CTRL & SHIFT::return

Just replace Notepad with your application title.

surfasb

Posted 2011-08-02T03:56:02.330

Reputation: 21 453

Your answer was helpful, it lead me to a correct working script. Perhaps they have changed something, but the correct string to use now is #IfWinActive ahk_class Notepad. – alexeit – 2011-08-02T22:03:30.290

Oops. I thought it would accept the title bar text as well as ahk_class . . . – surfasb – 2011-08-02T22:15:50.410

Actually this completely removes support for CTRL+SHIFT from the application however i need it for key combinations like CTRL+SHIFT+LEFT / RIGH – alexeit – 2011-08-02T23:09:14.840