Ctrl+Backspace inserts a small box instead of erasing

57,947

Solution 1

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.

Solution 2

The "box" you're seeing is what is known as a control character. The box is displayed because, as you've discovered, not all programs handle the ctrl+backspace to remove a word.

This control character is one of 33 "non-printing" characters in the 128 character ASCII character-encoding scheme.

Solution 3

Found this on an MSDN blog...

A few people in the early days of the Internet Explorer group used the Brief editor, which uses Ctrl+Backspace as the shortcut key to delete the previous word, and they liked it so much that one of them added it to the autocomplete handler. Therefore, any edit control that uses SHAutoComplete will gain this secret Ctrl+Backspace hotkey.

So it sounds like if the application does not use SHAutoComplete it will not support the feature unless it has been explicitly added by the application's author.

P.S. control-delete removes the word ahead of the cursor

Solution 4

I had the issue with Outlook 1908 after Windows 10 update 1909 (November 2019 update).

I restarted Outlook and it fixed the problem.

Share:
57,947

Related videos on Youtube

Admin
Author by

Admin

Updated on September 17, 2022

Comments

  • Admin
    Admin almost 2 years

    When I press Ctrl+Backspace, sometimes a small square is inserted, instead of the entire word being erased.

    The problem only happens in some text boxes; in others the shortcut works like it should.

    • Start menu search box: works

    • Notepad: doesn’t work

      small box created from Ctrl+Backspace in Notepad

    • Notepad2: works

    • Firefox: works

    I’m running Windows 7 x64.

    • djhowell
      djhowell almost 15 years
      I get the same behavior in notepad in WinXP.
    • Rory O'Kane
      Rory O'Kane almost 11 years
      I also get this behavior when renaming a file in File Explorer on Windows 7. That is, when I select a file, press F2, move the cursor to the end of the word I want to delete, and try Ctrl+Backspace.
    • bugybunny
      bugybunny over 4 years
      fyi Windows 10 1809 (October 2018 update) fixed this in their notepad application. howtogeek.com/353165/…. I would really wish they would finally fix this in Windows Explorer.
    • Avatar
      Avatar almost 4 years
      Also renaming in Windows 10 (F2 then CTRL + Backspace) still gives the same behavior.
  • heavyd
    heavyd almost 15 years
    Also on this same article, reading through the comments adds a little bit more insight: blogs.msdn.com/oldnewthing/archive/2007/10/11/…
  • Julian
    Julian almost 15 years
    Just wanted to add that some applications handle it even worse and actually don't display the control character. You can see this when nothing happens with ctrl+backspace and pressing delete seems to do nothing. I think notepad for Vista did this.
  • Admin
    Admin almost 15 years
    The character inserted is 127 - the delete character.
  • Rory O'Kane
    Rory O'Kane almost 11 years
    Link to ASCII char 127, the delete character, on Wikipedia
  • mafu
    mafu over 8 years
    This explains the obvious 'what', but not 'why' :-(
  • Avatar
    Avatar almost 4 years
    So the developers of "Windows Explorer" haven't added "SHAutoComplete" to the renaming action for more than a decade?! ... Unbelievable.
  • Avatar
    Avatar almost 4 years
    If you only need Windows Explorer: #IfWinActive ahk_class CabinetWClass ; File Explorer ^Backspace:: Send ^+{Left}{Backspace} #IfWinActive