- Fixed dev tools shortcuts on #347

This commit is contained in:
Ben Reaves
2020-12-10 19:41:41 -06:00
parent 75ac498c9d
commit 3458246fbf
2 changed files with 5 additions and 5 deletions

View File

@@ -445,8 +445,8 @@ GroupAdd, intellij, ahk_exe idea64.exe
#IfWinActive ahk_group browsers #IfWinActive ahk_group browsers
^q::send {Alt Down}f{Alt Up}x ; exit all windows ^q::send {Alt Down}f{Alt Up}x ; exit all windows
; Dev Tools ; Dev Tools
#^i::send {Ctrl Down}{Shift Down}i{Shift Up}{Ctrl Up} !^i::send {Ctrl Down}{Shift Down}i{Shift Up}{Ctrl Up}
#^j::send {Ctrl Down}{Shift Down}j{Shift Up}{Ctrl Up} !^j::send {Ctrl Down}{Shift Down}j{Shift Up}{Ctrl Up}
; Open preferences ; Open preferences
#IfWinActive ahk_exe firefox.exe #IfWinActive ahk_exe firefox.exe
^,::send {Alt Down}{Shift Down}t{Shift Up}{Alt Up}o{Enter} ^,::send {Alt Down}{Shift Down}t{Shift Up}{Alt Up}o{Enter}

View File

@@ -207,8 +207,8 @@ define_keymap(re.compile("org.gnome.nautilus", re.IGNORECASE),{
# Keybindings for Browsers # Keybindings for Browsers
define_keymap(re.compile(browserStr, re.IGNORECASE),{ define_keymap(re.compile(browserStr, re.IGNORECASE),{
K("RC-Q"): K("RC-Q"), # Close all browsers Instances K("RC-Q"): K("RC-Q"), # Close all browsers Instances
K("Super-RC-I"): K("RC-Shift-I"), # Dev tools K("M-RC-I"): K("RC-Shift-I"), # Dev tools
K("Super-RC-J"): K("RC-Shift-J"), # Dev tools K("M-RC-J"): K("RC-Shift-J"), # Dev tools
}) })
# Open preferences in browsers # Open preferences in browsers