Advertisement
rasmonkey17

/r/MK AHK ALT IJLK Arrow Keys Script

Jul 2nd, 2017
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;Alt arrow keys
  2. ;--------------------------
  3. ;Left alt + i moves cursor up
  4. <!i::
  5. Send, {Up}
  6. Return
  7.  
  8. ;left alt + j
  9. <!j::
  10. Send, {Left}
  11. Return
  12.  
  13. ;left alt + ctrl + j selects text to the left
  14. ^+<!j::
  15. Send, ^+{Left}
  16. Return
  17.  
  18. ^<!j::
  19. Send, ^{Left}
  20. Return
  21.  
  22. <!k::
  23. Send, {Down}
  24. Return
  25.  
  26. <!l::
  27. Send, {Right}
  28. Return
  29.  
  30. ^+<!l::
  31. Send, ^+{Right}
  32. Return
  33.  
  34. ^<!l::
  35. Send, ^{Right}
  36. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement