Bump API version for new plugin entry points (oops)
[geany-mirror.git] / data / filetypes.javascript
blob2f3dc36c8eaa7d929721b8778b171ba4d5ff645f
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling=C]
4 [keywords]
5 # all items must be in one line
6 primary=break case catch const continue default delete do each else false finally for function get if in Infinity instanceof let NaN new null return set switch this throw true try typeof undefined var void while with yield prototype
7 secondary=Array Boolean Date Function Math Number Object String RegExp EvalError Error RangeError ReferenceError SyntaxError TypeError URIError prototype decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt
9 [settings]
10 # default extension used when saving files
11 extension=js
13 # MIME type
14 mime_type=application/javascript
16 # the following characters are these which a "word" can contains, see documentation
17 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
19 # single comments, like # in this file
20 comment_single=//
21 # multiline comments
22 comment_open=/*
23 comment_close=*/
25 # set to false if a comment character/string should start at column 0 of a line, true uses any
26 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
27         #command_example();
28 # setting to false would generate this
29 #       command_example();
30 # This setting works only for single line comments
31 comment_use_indent=true
33 # context action command (please see Geany's main documentation for details)
34 context_action_cmd=
36 [indentation]
37 #width=4
38 # 0 is spaces, 1 is tabs, 2 is tab & spaces
39 #type=1
41 [build-menu]
42 # %f will be replaced by the complete filename
43 # %e will be replaced by the filename without extension
44 # (use only one of it at one time)
45 FT_02_LB=_Lint
46 FT_02_CM=jshint "%f"
47 FT_02_WD=
48 error_regex=([^:]+): line ([0-9]+), col ([0-9]+)