Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Back/Forward/(Undo Text/Tabs) Enabled #497

Open
wants to merge 9 commits into
base: dev
Choose a base branch
from
Prev Previous commit
Next Next commit
- Revised Windows Back/Forward/Undo syntax
  • Loading branch information
rbreaves committed Feb 12, 2021
commit bcea1e682a6b35d7312e89ad29ec2837c95efb87
7 changes: 4 additions & 3 deletions windows/kinto.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -492,14 +492,15 @@ GroupAdd, intellij, ahk_exe idea64.exe
; Reopen closed tab or Undo text field
$^z::
if(blinking()){
Send, ^z
Send ^z
}
else{
Send, ^+t
Send ^+t
}
Return
; Open preferences
#IfWinActive ahk_exe firefox.exe
^,::send, {Ctrl Down}t{Ctrl Up}about:preferences{Enter}
^,::send {Ctrl Down}t{Ctrl Up}about:preferences{Enter}
#If
#IfWinActive ahk_exe chrome.exe
^,::send {Alt Down}e{Alt Up}s{Enter}
Expand Down