mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-04 10:06:41 +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
|
; Cmd Tab For App Switching
|
||||||
LCtrl & Tab::AltTab
|
LCtrl & Tab::AltTab
|
||||||
RCtrl & Tab::AltTab
|
RCtrl & Tab::AltTab
|
||||||
|
|
||||||
; Ctrl Tab for In-App Tab Switching
|
; Ctrl Tab for In-App Tab Switching
|
||||||
LWin & Tab::Send ^{Tab}
|
; https://autohotkey.com/board/topic/72433-controltab/
|
||||||
RWin & Tab::Send ^{Tab}
|
#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
|
; Close Apps
|
||||||
^q::Send !{F4}
|
^q::Send !{F4}
|
||||||
|
Reference in New Issue
Block a user