私がしているAutohotkeyの設定

こんにちは、バイマルです。

今回は私のAutohotkeyの設定の一部を公開します。

参考にしていただいたり、何か他に便利な使い方があれば共有していただけると嬉しいです。

 

前提として、別のフリーソフト「Change key」を使って

「q」と「Insert」を入れ替えています。

「q」は日本語ではもちろん、英語を入力する際にも使うことがあまりないので

ホームポジションにいらないと判断しました。)

 

そして以下、Autohotkeyの設定です。

今回はアルファベット部分だけを公開しています。

———————————————————————————————————————

;■アルファベット
Ins & a::
Send, {Enter 16} {Up 15}
Return

Ins & b::
Send, {AppsKey}
Return

Ins & c:: 
Send, ^c
Return

Ins & d::
Send, {Volume_Up 2}
Return

Ins & e::
Send, {Esc}
Return

Ins & f::
Send, {Browser_Back}
Return

Ins & g::
Send, {Browser_Forward}
Return

Ins & h::
if GetKeyState("Alt") 
{
Send, +{Left}
return
}
Send, {Left}
Return

Ins & i::
Send, {Delete}
Return

Ins & j::
Send, {Down}
Return

Ins & k::
Send, {Up}
Return

Ins & l::
if GetKeyState("Alt") 
{
Send, +{Right}
return
}
Send, {Right}
Return

Ins & m::
if GetKeyState("Alt") 
{
Send, ^{End}
return
}
Send, {End}
Return

Ins & n::
if GetKeyState("Alt") 
{
Send, ^{Home}
return
}
Send, {Home}
Return

Ins & o::
Send, {LButton}
Return

Ins & p::
Send, {RButton}
Return

Ins & q::
Send, {Insert}
Return

Ins & r::
Run, "C:\Users\****\Documents"
Return

Ins & s::
Send, {Volume_Down 2}
Return

Ins & t::
Send, +{Home}
Return

Ins & u::
Send, {Backspace}
Return

Ins & v::
Send, ^v
Return

Ins & w::
Send, {Enter}
Return

Ins & x::
Send, ^x
Return

Ins & y::
Send, +{End}
Return

Ins & z::
Send, {Down}
Return

———————————————————————————————————————

いかがだったでしょうか。

特に「矢印」「Backspace」「Delete」「右クリック」「左クリック」「Home」「End」などをホームポジションで押せるようになるのはとても便利だと思います。

Autohotkeyを導入したばかりの人にぜひ参考にしてもらいたいです。

最後まで読んでいただきありがとございました。