3

I am trying to map Esc to left Control and Control+ESC to the original ESC. Unfortunately when I press Control+ESC, the Windows start menu is opened. How to solve this issue?

Esc::Send {LControl Down}
^Esc::Esc
Name
  • 339
  • 2
  • 18

1 Answers1

3

Use $ modifier before Esc hotkey definition to prevent launching it from another hotkey:

$Esc::Send {LControl Down}
^Esc::Send {Esc}

After this change, definitions are working as you expect.

miroxlav
  • 11,796
  • 5
  • 58
  • 99