Skip to content

Instantly share code, notes, and snippets.

@JorianWoltjer
Last active March 18, 2022 21:21
Show Gist options
  • Save JorianWoltjer/a47a34a2a3d2fd9797d7ea26afbd5e83 to your computer and use it in GitHub Desktop.
Save JorianWoltjer/a47a34a2a3d2fd9797d7ea26afbd5e83 to your computer and use it in GitHub Desktop.
Enable Ctrl+Backspace shortcut to delete an entire word in Adobe apps
#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