Difference between revisions of "Tips for using SciTE with Haskell"

From HaskellWiki
Jump to navigation Jump to search
(New page: 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...)
 
 
Line 31: Line 31:
 
! Type this, then Ctrl+B...
 
! Type this, then Ctrl+B...
 
! ...to get
 
! ...to get
|-
 
| row 1, cell 1
 
| row 1, cell 2
 
 
|-
 
|-
 
| ::
 
| ::
Line 64: Line 61:
 
| *
 
| *
 
| ★
 
| ★
|-
 
| row 3, cell 1
 
| row 3, cell 2
 
 
|}
 
|}

Latest revision as of 16:11, 30 September 2011

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