You can fix this behavior by overriding the Ctrl+Backspace shortcut using AutoHotkey. Save the following code in a plain text file with the given filename and extension, then launch the script with AutoHotkey:
FixCtrlBackspace.ahk
; how to write scripts: http://www.autohotkey.com/docs/
#IfWinActive ahk_class CabinetWClass ; File Explorer
^Backspace::
#IfWinActive ahk_class Notepad
^Backspace::
Send ^+{Left}{Backspace}
#IfWinActive
; source and context: http://superuser.com/a/636973/124606
; relevant documentation links:
; writing hotkeys
; http://www.autohotkey.com/docs/Hotkeys.htm
; list of key codes (including Backspace)
; http://www.autohotkey.com/docs/KeyList.htm
; the #IfWinActive directive
; http://www.autohotkey.com/docs/commands/_IfWinActive.htm
; the Send command
; http://www.autohotkey.com/docs/commands/Send.htm
You may find it easier to download this script file from GitHub, rather than creating the file and pasting in its contents yourself.
To launch this script automatically on startup, add a shortcut to it to the Startup folder in your Start menu, as described in How to Make a Program Run at Startup on Any Computer.
The basic idea of the script is this:
^Backspace:: Send ^+{Left}{Backspace}
This changes the Ctrl+Backspace shortcut in all programs so that it is equivalent to pressing Ctrl+Shift+←, to select the previous word, and then Backspace, to delete it.
This select-and-delete workaround, while better than typing a box, is brittle. It’s safer to not enable this shortcut in programs in which Ctrl+Backspace already works. That’s why I use #IfWinActive
to limit the hotkey to only programs that I know don't support that shortcut.
1I get the same behavior in notepad in WinXP. – djhowell – 2009-08-31T20:08:18.680
2
I also get this behavior when renaming a file in File Explorer on Windows 7. That is, when I select a file, press
– Rory O'Kane – 2013-08-26T21:35:13.757F2
, move the cursor to the end of the word I want to delete, and tryCtrl
+Backspace
.