Skip to content

Instantly share code, notes, and snippets.

@RYLSnmm
Last active February 18, 2023 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RYLSnmm/1bd0c0657f91278d805e45e87e05ee01 to your computer and use it in GitHub Desktop.
Save RYLSnmm/1bd0c0657f91278d805e45e87e05ee01 to your computer and use it in GitHub Desktop.
AutoHotKey のスクリプト v2
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode "Input" ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir A_ScriptDir ; Ensures a consistent starting directory.
; 無変換=sc07B
; Up
sc07B & i::
{
SetKeyDelay -1
Send "{Blind}{Up DownTemp}"
}
sc07B & i up::
{
SetKeyDelay -1
Send "{Blind}{Up Up}"
}
; Left
sc07B & j::
{
SetKeyDelay -1
Send "{Blind}{Left DownTemp}"
}
sc07B & j up::
{
SetKeyDelay -1
Send "{Blind}{Left Up}"
}
; Down
sc07B & k::
{
SetKeyDelay -1
Send "{Blind}{Down DownTemp}"
}
sc07B & k up::
{
SetKeyDelay -1
Send "{Blind}{Down Up}"
}
; Right
sc07B & l::
{
SetKeyDelay -1
Send "{Blind}{Right DownTemp}"
}
sc07B & l up::
{
SetKeyDelay -1
Send "{Blind}{Right Up}"
}
; Default
sc07B::Send "{sc07B}"
;
sc07B & Esc::Reload
sc07B & F1::Edit
sc07B & F2::KeyHistory
sc07B & F3::ListLines
sc07B & F4::ListVars
sc07B & F5::ListHotKeys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment