0

I have a small problem I cant find the solution to:

On my italian keyboard one key holds the two simbols "<" and ">":

  • [key] = "<"
  • [shift]+[key] = ">"

I'd like to remap them so that the result ins inverted as I use > much more than <. I can't find a way to write this in ahk. I tried with

<::>
+>::<

and

<::>
>::<

The result with the above is that both pressing the key and shift+key returns ">".

I understand what "confuses" ahk but I can't find a workaround.

Any suggestions?

enea
  • 15
  • 1
  • 4

1 Answers1

0

Try

#UseHook   ; prevents the Send command from triggering the hotkey itself

<:: Send >
+<:: Send <
user3419297
  • 9,537
  • 2
  • 15
  • 24