mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-01 08:46:40 +02:00
- Improved CtrlTab to work with more apps under Windows 10
This commit is contained in:
@@ -36,9 +36,25 @@ RWin::return
|
||||
; Cmd Tab For App Switching
|
||||
LCtrl & Tab::AltTab
|
||||
RCtrl & Tab::AltTab
|
||||
|
||||
; Ctrl Tab for In-App Tab Switching
|
||||
LWin & Tab::Send ^{Tab}
|
||||
RWin & Tab::Send ^{Tab}
|
||||
; https://autohotkey.com/board/topic/72433-controltab/
|
||||
#if GetKeyState("LWin")
|
||||
*Tab::
|
||||
if(!GetKeyState("LControl"))
|
||||
Send {LControl Down}
|
||||
Send {Tab}
|
||||
SetTimer, WaitForWinUp, 10
|
||||
ToolTip trigger
|
||||
return
|
||||
|
||||
WaitForWinUp:
|
||||
if(!GetKeyState("LWin", "P"))
|
||||
{
|
||||
Send {LControl Up}
|
||||
SetTimer, WaitForWinUp, Off
|
||||
}
|
||||
return
|
||||
|
||||
; Close Apps
|
||||
^q::Send !{F4}
|
||||
|
Reference in New Issue
Block a user