AutohotKey assign symbols

Viewed 19

I want to get <- when I press alt+s

I use this code below but it does not work. I believe, you cannot put 2 symbols into brackets. How to assign it correctly??

!s::SendInput {<}

1 Answers

!s::SendRaw <- or !s::SendInput {<}-

Related