Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Correctly rendering the commented characters requires UTF-16 encoding.
- SciTE4: File > Encoding > UTF-16 Little Endian to display the commented characters correctly.
- I looked up the hex values of these Unicode code points using unicodelookup.com .
- Hats off to the dev Jonathan Hedley for making such an insanely flexible tool.
- */
- global GlobalCycleKey := "``"
- =::CycleAltKeys(["{U+003D}", "{U+2248}"], GlobalCycleKey) ; =, ≈
- ~::CycleAltKeys(["{U+0065}", "{U+03B5}"], GlobalCycleKey) ; e, ε
- <::CycleAltKeys(["{U+003C}", "{U+2264}"], GlobalCycleKey) ; <, ≤
- >::CycleAltKeys(["{U+003E}", "{U+2265}"], GlobalCycleKey) ; >, ≥
- a::CycleAltKeys(["{U+0061}", "{U+03B1}"], GlobalCycleKey) ; a, α
- b::CycleAltKeys(["{U+0062}", "{U+03B2}"], GlobalCycleKey) ; b, β
- d::CycleAltKeys(["{U+0064}", "{U+0394}"], GlobalCycleKey) ; d, Δ
- e::CycleAltKeys(["{U+0065}", "{U+03B5}"], GlobalCycleKey) ; e, ε
- l::CycleAltKeys(["{U+006C}", "{U+03BB}"], GlobalCycleKey) ; l, λ
- t::CycleAltKeys(["{U+0074}", "{U+03C4}"], GlobalCycleKey) ; t, τ
- u::CycleAltKeys(["{U+0075}", "{U+03BC}"], GlobalCycleKey) ; u, μ
- x::CycleAltKeys(["{U+0078}", "{U+03C7}", "{U+2A2F}"], GlobalCycleKey) ; x, χ, ⨯
- y::CycleAltKeys(["{U+0079}", "{U+03B3}"], GlobalCycleKey) ; y, γ
- 0::CycleAltKeys(["{U+0030}", "{U+03B8}", "{U+03C6}"], GlobalCycleKey) ; 0, θ, φ (angles)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement