Windows11の音声入力が便利なので、そのショートカットWin+HをCtrlキーに割り当ててみた。
#Requires AutoHotkey v2.0
; Ctrlキーを押すとWin+Hを送信
Ctrl::
{
Send "{LWin down}h{LWin up}"
}
; スクリプトを終了するためのホットキー (Ctrl+Esc)
^Esc::ExitApp()
Go to list of users who liked
Windows11の音声入力が便利なので、そのショートカットWin+HをCtrlキーに割り当ててみた。
#Requires AutoHotkey v2.0
; Ctrlキーを押すとWin+Hを送信
Ctrl::
{
Send "{LWin down}h{LWin up}"
}
; スクリプトを終了するためのホットキー (Ctrl+Esc)
^Esc::ExitApp()
Register as a new user and use Qiita more conveniently
Go to list of users who liked