Use Scintilla's buffer directly for parsing tags
[geany-mirror.git] / data / filetypes.forth
blob46545766ec458ea39948a3c3875b0fa96a7c7bf9
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling]
3 # Edit these in the colorscheme .conf file instead
4 default=default
5 comment=comment
6 commentml=comment_doc
7 identifier=identifier_1
8 control=keyword_1
9 keyword=keyword_1
10 defword=keyword_2
11 preword1=keyword_3
12 preword2=keyword_4
13 number=number_1
14 string=string_1
15 locale=other
17 [keywords]
18 # all items must be in one line
19 primary=ABORT EXIT DO LOOP UNLOOP BEGIN UNTIL WHILE REPEAT EXIT IF ELSE THEN CASE ENDCASE OF ENDOF
22 [settings]
23 # default extension used when saving files
24 extension=fs
26 # the following characters are these which a "word" can contains, see documentation
27 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
29 # single comments, like # in this file
30 comment_single=\\
31 # multiline comments
32 comment_open=(
33 comment_close= )
35 # comment_open=\
36 # comment_close=
38 # set to false if a comment character/string should start at column 0 of a line, true uses any
39 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
40         #command_example();
41 # setting to false would generate this
42 #       command_example();
43 # This setting works only for single line comments
44 comment_use_indent=true
46 # context action command (please see Geany's main documentation for details)
47 context_action_cmd=
49 [indentation]
50 #width=4
51 # 0 is spaces, 1 is tabs, 2 is tab & spaces
52 #type=1