Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Custom keyboard shortcuts

  • Žiadne odpovede
  • 1 má tento problém
  • 1 zobrazenie
  • Posledná odpoveď od 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.

Všetky odpovede (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/