How to add the Alt+Backspace macOS typing functionality to Windows

I use a Mac and if I press Alt+Backspace it deletes the entire word. This way it is simple for me to delete many words one after the other very quickly. May I use the same functionality on Windows 10? Mapping a shortcut to delete an entire word and not character-by-character?


Please use Ctrl + Backspace on Windows to delete an entire word.


You can remap the hot key using AutoHotkey.

The following script will do it. Set it up to run on Windows start up or when you log in.

!BS::
Send ^{Backspace}

Note: On my PC, Alt-Backspace seems to be Undo, same as Ctrl-Z. AutoHotkey will replace the existing functionality while the script is running.


If you wanted to emulate the Alt + Backspace which deletes the word to the left of the cursor, it is possible that you would also want to emulate the Command + Backspace functionality, which deletes the line to the left of the cursor.

Assuming that you use the native Ctrl + Backspace Windows functionality to delete the previous word, you can remap Alt + Backspace to delete the previous line. This is especially convenient as on most Windows keyboards the Alt key is approximately in the same position as the Command key on Mac computers.

The following AutoHotKey script would achieve the aforementioned functionality:

!Backspace::
Send {Shift down}{Home}{Shift up}{Backspace}
return