Tips for using SciTE with Haskell

From HaskellWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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