- Added Insert on RAlt-Enter #371 #348, fixed cmd-tab during term usage (linux)

This commit is contained in:
Ryan Reaves
2021-01-10 16:16:42 -06:00
parent 015faa4491
commit 43b4ae3986
2 changed files with 21 additions and 2 deletions

View File

@@ -270,6 +270,17 @@ GroupAdd, intellij, ahk_exe idea64.exe
; $LWin up::Send {LWin up}{LAlt up}{LCtrl up} ; MacModifiers
; $LAlt up::Send {LWin up}{CapsLock up}{LAlt up}{LCtrl up} ; CB/IBM
!Enter::
{
if (GetKeyState("RAlt", "P")) {
Send {Insert}
}
else{
Send {Alt down}{Enter}{Alt up}
}
Return
}
; Remap Alt+Esc to Break/Pause
!Esc::SendInput, {Pause}