Tips for using SciTE with Haskell
Here are some useful abbreviations, if you like using the Unicode symbols. Create a file named abbrev.properties in your home directory, and paste in the code below. (If you already have a file named abbrev.properties, add the code below to that file.)
# 0x2237 PROPORTION
::=∷|
# 0x21D2 RIGHTWARDS DOUBLE ARROW (can't use equals in an abbreviation name)
e>=⇒|
# 0x2200 FOR ALL
forall=∀|
# 0x2192 RIGHTWARDS ARROW
->=→|
# 0x2190 LEFTWARDS ARROW
<-=←|
# 0x2919 LEFTWARDS ARROW-TAIL
-<=↢|
# 0x291A RIGHTWARDS ARROW-TAIL
>-=↣|
# 0x291B LEFTWARDS DOUBLE ARROW-TAIL
-<<=⤛|
# 0x291C RIGHTWARDS DOUBLE ARROW-TAIL
>>-=⤜|
# 0x2605 BLACK STAR
*=★|
Afterward, you can use the following shortcuts:
Type this, then Ctrl+B... | ...to get |
---|---|
:: | ∷ |
e> | ⇒ |
forall | ∀ |
-> | → |
<- | ← |
-< | ↢ |
>- | ↣ |
-<< | ⤛ |
>>- | ⤜ |
* | ★ |