Skip to content

Instantly share code, notes, and snippets.

@1natsu172
Created December 27, 2021 16:16
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 1natsu172/24d8e83bc0a0f9c53ca6c0aae41f219a to your computer and use it in GitHub Desktop.
Save 1natsu172/24d8e83bc0a0f9c53ca6c0aae41f219a to your computer and use it in GitHub Desktop.
Windows keybind hotkeys
#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
@1natsu172
Copy link
Author

image

Based ja/en switch key is here. Refer lock only microsoft-IME .

@1natsu172
Copy link
Author

image

Based Meta keybinding change by Microsoft PowerToys(https://github.com/microsoft/PowerToys)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment