Move lines properly in Editors. Closes #481

Fixes issue in VSCode with moving lines on Alt-Up/Down
This commit is contained in:
Ben Reaves
2021-07-27 13:42:28 -05:00
committed by GitHub
parent f717db9aaa
commit e69e529a18

View File

@@ -308,8 +308,10 @@ GroupAdd, intellij, ahk_exe idea64.exe
!Esc::SendInput, {Pause}
; Go up or down a page
$!Down::Send {PgDn};
$!Up::Send {PgUp};
#IfWinNotActive ahk_group editors
$!Down::Send {PgDn}
$!Up::Send {PgUp}
#If
; Close Apps
^q::Send !{F4}
@@ -833,4 +835,4 @@ Send {RWin up}
Send {LWin up}
Send {RShift up}
Send {LShift up}
return
return