diff options
author | Peter | 2021-06-29 12:20:28 +0100 |
---|---|---|
committer | Peter | 2021-06-29 12:20:28 +0100 |
commit | a647fe76d1a0957a381be57993d7084c1eccfb70 (patch) | |
tree | 2de5e0a3ad9d837cbba507ad7af3a193d0dec241 | |
parent | 844ce129f2fc397002a57b2df867af24c5357c1a (diff) | |
download | ahka-a647fe76d1a0957a381be57993d7084c1eccfb70.tar.gz ahka-a647fe76d1a0957a381be57993d7084c1eccfb70.tar.bz2 ahka-a647fe76d1a0957a381be57993d7084c1eccfb70.zip |
Fix firefox and add tab switching hotkeys
-rw-r--r-- | ahk-assistant.ahk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk index d5cfd3d..b825e2a 100644 --- a/ahk-assistant.ahk +++ b/ahk-assistant.ahk @@ -227,7 +227,7 @@ Insert::appendClipboard() ^l::Send ^c{Enter}cls{Enter} ; clear screen as in linux
#IfWinActive
-#IfWinActive ahk_class ahk_class ahk_class MozillaWindowClass ; firefox
+#IfWinActive ahk_class MozillaWindowClass ; firefox
^+w::Send ^w ; quit window closes tab
^+n::Send ^+p ; new incognito window
^q::Send ^w ; quit now closes tab, the two keys are too close for this sort of thing
@@ -243,6 +243,8 @@ Insert::appendClipboard() F6::Send ^l ; F6 jumps to address bar
+PgDn::Send {Space 4}{Down 5} ; scroll down to specific part of a specific page, not really
+PgUp::Send {Home} ; makes sense, kinda
+ RAlt & Left::Send, ^+{Tab}
+ RAlt & Right::Send, ^{Tab}
Ralt & Enter:: ; overflow
Alt & Enter::toggleFullscreen() ; leave flash full screen with a keyboard command
:*?:_crm::
|