Handle failure of reading named style by trying to read it as a named color
[geany-mirror.git] / data / filetypes.php
blob3aadd841ee8e3e80f4a69c962b11ed4788d6d192
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling=HTML]
4 [keywords=HTML]
6 [lexer_properties]
7 phpscript.mode=1
9 [settings]
10 # default extension used when saving files
11 extension=php
13 # the following characters are these which a "word" can contains, see documentation
14 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
16 # these comments are used for PHP, the comments used in HTML are in filetypes.xml
17 # single comments, like # in this file
18 comment_single=//
19 # multiline comments
20 comment_open=/*
21 comment_close=*/
23 # set to false if a comment character/string should start at column 0 of a line, true uses any
24 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
25 #command_example();
26 # setting to false would generate this
27 # command_example();
28 # This setting works only for single line comments
29 comment_use_indent=true
31 # context action command (please see Geany's main documentation for details)
32 context_action_cmd=
34 # if this setting is set to true, a new line after a line ending with an
35 # unclosed tag will be automatically indented
36 xml_indent_tags=true
38 [indentation]
39 #width=4
40 # 0 is spaces, 1 is tabs, 2 is tab & spaces
41 #type=1
43 [build_settings]
44 # %f will be replaced by the complete filename
45 # %e will be replaced by the filename without extension
46 # (use only one of it at one time)
47 compiler=php -l "%f"
48 run_cmd=php "%f"
50 # use can also use something like this, to view your PHP or HTML files through a browser and webserver
51 #run_cmd=firefox http://localhost/test_site/%f