fork download
  1. ; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
  2. ; semicolon, such as this one, are comments. They are not executed.
  3.  
  4. ; This script has a special filename and path because it is automatically
  5. ; launched when you run the program directly. Also, any text file whose
  6. ; name ends in .ahk is associated with the program, which means that it
  7. ; can be launched simply by double-clicking it. You can have as many .ahk
  8. ; files as you want, located in any folder. You can also run more than
  9. ; one ahk file simultaneously and each will get its own tray icon.
  10.  
  11. ; SAMPLE HOTKEYS: Below are two sample hotkeys. The first is Win+Z and it
  12. ; launches a web site in the default browser. The second is Control+Alt+N
  13. ; and it launches a new Notepad window (or activates an existing one). To
  14. ; try out these hotkeys, run AutoHotkey again, which will load this file.
  15.  
  16. ; Ctrlに指持ってくのめんどい
  17. vk1Dsc07B & x:: Send, ^x
  18. vk1Dsc07B & c:: Send, ^c
  19. vk1Dsc07B & v:: Send, ^v
  20. vk1Dsc07B & s:: Send, ^s
  21.  
  22. ; vi風カーソル移動
  23. vk1Dsc07B & h:: Send, {Blind}{Left}
  24. vk1Dsc07B & j:: Send, {Blind}{Down}
  25. vk1Dsc07B & k:: Send, {Blind}{Up}
  26. vk1Dsc07B & l:: Send, {Blind}{Right}
  27.  
  28. ; 遠いのでホームポジション付近に持ってきた(右側)
  29. vk1Dsc07B & 9:: Send, {Blind}{PgUp}
  30. vk1Dsc07B & o:: Send, {Blind}{PgDn}
  31. vk1Dsc07B & 8:: Send, {Blind}{Home}
  32. vk1Dsc07B & i:: Send, {Blind}{End}
  33. vk1Dsc07B & 7:: Send, {Blind}{Insert}
  34. vk1Dsc07B & u:: Send, {Blind}{Delete}
  35. vk1Dsc07B & m:: Send, {Blind}{Enter}
  36. vk1Dsc07B & y:: Send, {Blind}{BackSpace}
  37.  
  38. ; 遠いのでホームポジション付近に持ってきた(左側)
  39. vk1Dsc07B & /:: Send, {Blind}{Esc}
  40. ; ※vkF3sc029は半角/全角キー
  41. vk1Dsc07B & <:: Send,{vkF3sc029}
  42.  
  43. ; 地味に便利
  44. vk1Dsc07B & n:: Send,{End}{Enter}
  45. vk1Dsc07B & b:: Send,{Home}{Enter}{Up}
  46.  
  47. ; Note: From now on whenever you run AutoHotkey directly, this script
  48. ; will be loaded. So feel free to customize it to suit your needs.
  49.  
  50. ; Please read the QUICK-START TUTORIAL near the top of the help file.
  51. ; It explains how to perform common automation tasks such as sending
  52. ; keystrokes and mouse clicks. It also explains more about hotkeys.
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty