Last active
March 18, 2022 21:21
-
-
Save JorianWoltjer/a47a34a2a3d2fd9797d7ea26afbd5e83 to your computer and use it in GitHub Desktop.
Enable Ctrl+Backspace shortcut to delete an entire word in Adobe apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
#IfWinActive, ahk_exe Adobe Premiere Pro.exe | |
^BS:: send, ^+{left}{delete} | |
#IfWinActive | |
#IfWinActive, ahk_exe AfterFX.exe | |
^BS:: send, ^+{left}{delete} | |
#IfWinActive | |
#IfWinActive, ahk_exe Photoshop.exe | |
^BS:: send, ^+{left}{delete} | |
#IfWinActive | |
#IfWinActive, ahk_exe illustrator.exe | |
^BS:: send, ^+{left}{delete} | |
#IfWinActive | |
#IfWinActive, ahk_exe Adobe Audition.exe | |
^BS:: send, ^+{left}{delete} | |
#IfWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment