How do I map a single key exclusively?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
felipe57386
Posts: 1
Joined: 07 Feb 2023, 10:16

How do I map a single key exclusively?

Post by felipe57386 » 07 Feb 2023, 10:21

I want to map D to Backspace. But I don't want to map Ctrl+D to Ctrl+Backspace. How do I do this?

Code: Select all

d::BS
return
Last edited by gregster on 07 Feb 2023, 10:42, edited 1 time in total.
Reason: Removed two large, completely unrelated, pictures of a Paprika.

utvex
Posts: 10
Joined: 05 Feb 2023, 14:52

Re: How do I map a single key exclusively?

Post by utvex » 07 Feb 2023, 11:16

try this

Code: Select all

d::Send {BS}

Post Reply

Return to “Ask for Help (v1)”