Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

Custom keyboard shortcuts

  • Akukho zimpendulo
  • 1 inale nkinga
  • 1 view
  • Igcine ukuphendulwa ngu GL1947

more options

I would like to make keyboard shortcuts, i.e. type the first two letters of my email address so my full email pops in and I don't have to type my whole email EVERY SINGLE TIME.

I would like to make keyboard shortcuts, i.e. type the first two letters of my email address so my full email pops in and I don't have to type my whole email EVERY SINGLE TIME.

All Replies (1)

more options

get AutoHotkey {works with ALL programs AFAIK; easy to learn and use}, examples:

<your—identify>@<the—associated—e-mail—domain>

here's the .ahk script for the above:
==============================================================
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
^!+g::   ; Ctrl+Alt+Shift with "g-key" produces my e-mail address
SendInput <your—identify>@<the—associated—e-mail—domain>
return
==============================================================

here's one for pasting into a command prompt and command window text areas:
==============================================================
; Script Function:  enable paste in the Windows command prompt and text areas
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

#IfWinActive ahk_class ConsoleWindowClass
^V::    ; Ctrl with "v-key" within a command window pastes text from the clipboard
SendInput {Raw}%clipboard%
return
#IfWinActive
==============================================================

https://www.autohotkey.com/