Tips for using SciTE with Haskell

From HaskellWiki
Revision as of 16:11, 30 September 2011 by Amy de B (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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
->
<-
-<
>-
-<<
>>-
*