Created
December 27, 2021 16:16
-
-
Save 1natsu172/24d8e83bc0a0f9c53ca6c0aae41f219a to your computer and use it in GitHub Desktop.
Windows keybind hotkeys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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. | |
Ctrl::!` ; controlキーで日本語/英語切り替え(Alt+`) | |
LCtrl & Tab:: AltTab | |
!Tab:: Send ^{Tab} | |
!+Tab:: Send ^+{Tab} | |
^Space:: Send ^{Esc} | |
^Left::$ | |
Send {Home} | |
Return | |
^Right:: | |
Send {End} | |
Return | |
^+Left:: | |
Send +{Home} | |
Return | |
^+Right:: | |
Send +{End} | |
Return | |
^Up:: | |
Send ^{Home} | |
Return | |
^Down:: | |
Send ^{End} | |
Return | |
^+Up:: | |
Send ^+{Home} | |
Return | |
^+Down:: | |
Send ^+{End} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ref; https://gist.github.com/chrisdhanaraj/f6d1ff1e27e733bdd43257506688ccfc & https://medium.com/@chrisdhanaraj/mapping-your-macos-keybinds-to-windows-b6009c50065b