Advertisement
Guest User

AutoHotKey for unix like behaviour.

a guest
Jan 22nd, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. DisableLeftWinkey:
  7. SetCapsLockState, alwaysoff
  8. CapsLock::Ctrl
  9.  
  10.  
  11. CapsLock & b::Left
  12. CapsLock & f::Right
  13. CapsLock & p::Up
  14. CapsLock & n::Down
  15. CapsLock & h::Backspace
  16. CapsLock & d::Delete
  17. CapsLock & k::Send {Home}{ShiftDown}{End}{Right}{ShiftUp}{Del}
  18. CapsLock & s::^s
  19. CapsLock & a::Home
  20. CapsLock & e::End
  21. CapsLock & w::^w
  22. CapsLock & c::^c
  23.  
  24.  
  25. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement