Merge pull request #826 from kugel-/doxygen-fixes2
[geany-mirror.git] / data / filetypes.coffeescript
blobbe4598e8003e4daef8cc843dcdce9e4a661ab126
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling]
3 character=character
4 commentblock=comment
5 commentline=comment_line
6 default=default
7 globalclass=class
8 identifier=identifier_1
9 number=number_1
10 operator=operator
11 regex=regex
12 string=string_1
13 stringeol=string_eol
14 verbose_regex=regex
15 verbose_regex_comment=comment
16 word2=keyword_2
17 word=keyword_1
18 instanceproperty=identifier_2
21 [settings]
22 extension=coffee
23 comment_single=#
24 comment_open=###
25 comment_close=###
26 comment_use_indent=true
27 context_action_cmd=
30 [keywords]
31 # all items must be in one line
32 primary=and break by case catch class const continue default delete do each else extends false finally for get if in Infinity instanceof is isnt let loop NaN new no not null of off on or return set switch then this throw true try typeof undefined unless until void when where while with yes yield
33 secondary=constructor decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt prototype require super
34 # types, classes
35 globalclass=Array Boolean Date Error EvalError Function Math Number Object RangeError ReferenceError RegExp String SyntaxError TypeError URIError
37 [indentation]
38 #width=4
39 # 0 is spaces, 1 is tabs, 2 is tab & spaces
40 #type=1
42 [build-menu]
43 FT_00_LB=Compile into _Javascript
44 FT_00_CM=coffee --compile "%f"
45 FT_01_LB=View compiled _Javascript
46 FT_01_CM=coffee -p "%f"
47 EX_00_LB=Run
48 EX_00_CM=coffee "%f"