1
2
3
4
5
6
7
8
9
10
|
;This is example text, aimed simply to show the features of the FreshEdit control.
;1. Word-wrap feature. It works only for the lines formated with word-wrap format. You can set/remove word-wrap format by Creal+W key.
;2. FreshEdit can save the format into the source file. The formating is transparent for FASM compiler, so you can compile the files without removing formating.
;3. FreshEdit uses UTF-8 encoding - see following samples:
;Russian: Я могу есть стекло, оно мне не вредит.
;Yoruba: Mo lè je̩ dígí, kò ní pa mí lára.
|
|
|
1
2
3
4
5
6
7
8
9
10
|
;This is example text, aimed simply to show the features of the FreshEdit control.
;1. Word-wrap feature. It works only for the lines formated with word-wrap format. You can set/remove word-wrap format by Ctrl+W key.
;2. FreshEdit can save the format into the source file. The formating is transparent for FASM compiler, so you can compile the files without removing formating.
;3. FreshEdit uses UTF-8 encoding - see following samples:
;Russian: Я могу есть стекло, оно мне не вредит.
;Yoruba: Mo lè je̩ dígí, kò ní pa mí lára.
|
32
33
34
35
36
37
38
39
40
41
42
43
44
|
; 8. Color themes: Click on "T" button to switch the color theme for the editor.
; 9. Zebra background - if you like such eye-candy things. Click on "Z" button in order to switch it on/off.
proc AnotherTestProcedure
begin
xor eax, eax
mov ecx, 'ABCD'
return
endp
; 10. Click "#" to turn on/off the line numbers.
; 11. Ctrl-T will turn on/off some "line delimiting" lines on the left margin.
|
>
>
>
>
>
>
>
|
>
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
; 8. Color themes: Click on "T" button to switch the color theme for the editor.
; 9. Zebra background - if you like such eye-candy things. Click on "Z" button in order to switch it on/off.
proc AnotherTestProcedure
begin
xor eax, eax
locals ; We have of course several folding levels.
.x dd ?
.y dd ?
.rect TBounds
endl
mov ecx, 'ABCD'
return
endp
; 10. Click "#" to turn on/off the line numbers.
; 11. Ctrl-T will switch ON/OFF the whole left margin field.
; 12. Alt+Ins will switch the type of selection - line, char and block are supported for now.
|