1.Control(Ctrl)キーとCapsLockを入れ替える
---> ChgKey を利用する
2.Ctrl-h が入力されたら、Backspace とする
---> AutoHotKey を利用する
こんなファイルを AutoHotKey Script.ahk という名前で保存して、
c:\Users\xxx\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
フォルダに配置し、Windows起動時に自動的に読み込まれるようにする。
--------
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #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.
^h::Send, {Backspace}
^b::Send, {Left}
^f::Send, {Right}
^n::Send, {Down}
^p::Send, {Up}
^e::Send, {End}
#^a::Send, {Home} ;disabled (used for select-all)
^d::Send, {Delete}
^k::Send, {Shift down}{End}{Shift up}{Backspace}
^m::send, {Enter}
--------