BluePink BluePink
XHost
Gazduire site-uri web nelimitata ca spatiu si trafic lunar la doar 15 eur / an. Inregistrare domenii .ro .com .net .org .info .biz .com.ro .org.ro la preturi preferentiale. Pentru oferta detaliata accesati site-ul BluePink

My Autohotkey special character bindings

Autohotkey special character bindings

::nbs:: ; non-breaking space ”  ” Chr(160) SendInput {U+00a0} % Chr(160)
SendInput {U+00a0}
return

::ccx:: ; ^ circumflex, caret – Chr(94) {ASC 0094} {U+005E}
SendInput {U+005E}
return

::sqt:: ; ` grave/accent – {U+0060} {ASC 0096}
SendInput {U+0060}
return

::aps:: ; apostrophe ‘ `{U+0039} {ASC 0039} ALT+039
SendInput {U+0027}
Return

::uds:: ; Underscore _ {U+005F} {ASC 0095} ALT+095 _
SendInput {U+005F}
Return

::phi:: ; Diameter symbol Ø {U+00D8} {ASC 0216} ALT+0216 Ø Ø ~
SendInput {U+00D8}
Return

::ac1:: ; alt+123 { {U+007B} {ASC 0123}
SendInput {U+007B}
return
::ac2:: ; alt+125 } {ASC 0125} {U+007d}
SendInput {U+007d}
return

::a2::ä
::A2::Ä
::u2::ü
::U2::Ü
::o2::ö
::O2::Ö
::sfs::ß
::dz::#
::g1::„ ; Alt+0132 „
::g2::” ; Alt+0148 ”
::g3::” ; Alt+034 “
::gs1::«
::gs2::»
::sk::ș ; ș {U+0219} ş alt+0186 U015F New comma bellow
::skm::Ș ; Ș {U+0218} Ş ; alt+0170 U015E New comma bellow
::tk::ț ; ț {U+021B} ţ alt+0254 U0163 New comma bellow
::tkm::Ț ; Ț {U+021A} Ţ alt+0222 U0162 New comma bellow
::sc::ş ; ș {U+0219} ş alt+0186 U015F
::scm::Ş ; Ș {U+0218} Ş ; alt+0170 U015E
::tc::ţ ; ț {U+021B} ţ alt+0254 U0163
::tcm::Ţ ; Ț {U+021A} Ţ alt+0222 U0162
::+-::±
::lln::{U+02015} ; — EM dash 8212 {U+02014} ― Horizontal bar 8213 {U+02015}
::blt::•
::pgf::§
::bks::\
::trm::®
::cpr::©
::eur::€
::px::| ; Chr(124) Sheffer stroke (in logic), verti-bar, vbar, stick, vertical line, vertical slash, bar, obelisk, pike, pipe
::tld::~ ; ~ Tilde chr(126) Alt +126 {ASC 126}
::pp1::[
::pp2::]
::m1::<
::m2::>
::ms1::≤
::ms2::≥
:O:tb::{U+0009} ; Send raw {TAB} {U+0009} %A_Tab% :O: Omit the ending character of auto-replace hotstrings when the replacement is produced. Write without trailing space.