MagTun
MagTun

Reputation: 6195

How to disable Shift Ctrl?

I would like to disable Shift Ctrl without disabling other shorcuts like Shift Ctrl A, or Ctrl A, or Shift A.

I have tried multiple combinaison of ^+:: return with and without :

- Up : ^+ Up:: return
- ~ : ~^+ Up:: return
- & : ~^ & ~+ Up:: return

Nothing work. Even when I start my script as admin it doesn work.

I want to rename Shift Ctrl because I have two keyboard languages and pressing Shift Ctrl change it. I already have the shorcut Windows Space so I don't need Shift Ctrl.

I have tried with ahk but I am open to any other way to solve this.

Upvotes: 0

Views: 873

Answers (1)

Relax
Relax

Reputation: 10603

"^" is the modifier symbol for the Control key and "+" for the Shift key.

Modifier symbols are used only in key-combinations for modifying other keys.

Try also

+Ctrl Up:: return

or

Shift & Ctrl Up:: return

EDIT:

You can change or remove the combination that changes the keyboard language on Control panel --> Language, as shown in the comments below.

Upvotes: 1

Related Questions