Skip to content

Instantly share code, notes, and snippets.

@AdrienVR
AdrienVR / FixCtrlBackspace.ahk
Last active December 28, 2022 11:26 — forked from roryokane/FixCtrlBackspace.ahk
AutoHotkey script to fix Ctrl+Backspace (delete previous word) in File Explorer and Notepad
; how to write scripts: http://www.autohotkey.com/docs/
#NoEnv
#SingleInstance force
SendMode Input
#IfWinActive ahk_exe explorer.exe
^Backspace::
Send ^+{Left}{Backspace}
#IfWinActive ahk_exe ditto.exe
^Backspace::