Advertisement
Guest User

Untitled

a guest
Nov 25th, 2020
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. ; ##############################################################
  2. ; Language = CapsLock
  3. ;
  4. SetCapsLockState, AlwaysOff
  5. +CapsLock::CapsLock
  6. CapsLock::Send, {LWin down}{Space down}{Space up}{LWin up}
  7. Return
  8. ;
  9. ; ##############################################################
  10. ;
  11. ; "Delete" = Alt + Backspace
  12. ;
  13. !Backspace::
  14. Send, {Delete}
  15. Return
  16. ;
  17. ; ##############################################################
  18. ;
  19. ; Shift + Wheel for horizontal scrolling
  20. +WheelDown::WheelRight
  21. +WheelUp::WheelLeft
  22. ;
  23. ; ##############################################################
  24. ; MacOS style functional
  25. ;
  26. ; Alt + C = copy
  27. !c::Send ^c
  28. ;
  29. ; Alt + V = paste
  30. !v::Send ^v
  31. ;
  32. ; Alt + X = cut
  33. !x::Send ^x
  34. ;
  35. ; Alt + Z = undo
  36. !z::Send ^z
  37. ;
  38. ; Alt + W = undo
  39. !w::Send ^w
  40. ;
  41. ; Alt + Q = force quit
  42. !q::Send !{F4}
  43. ;
  44. ; Alt + A = select all
  45. !a::Send ^a
  46. ;
  47. ; Alt + R = reload page
  48. !r::Send ^r
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement