Skip to content

Instantly share code, notes, and snippets.

@necaran
necaran / AltMod.md
Last active March 30, 2024 22:31
Stop Alt key from focusing menu and more with AutoHotkey

Stop Alt key from focusing menu and more with AutoHotkey

TL;DR

  • Should be less likely to have side effects such as PowerShell/PSReadLine#2036.
  • Do not reduce the code to *Alt:: and ~*Alt up::, which can behave wired with RAlt.
*LAlt::SetKeyDelay(-1), Send("{LAlt down}{Shift}"), KeyWait("LAlt")
~*LAlt up::SetKeyDelay(-1), Send("{Blind}{LAlt up}")