Synchronize popup menu and plugin preferences dialog 'Show Hidden
[geany-mirror.git] / data / filetypes.php
blob3dd5751b96ba8f2c5b14a386756d1300fcbc6015
1 # For complete documentation of this file, please see Geany's main documentation
2 [styling]
3 # styling for PHP/HTML is done in filetypes.xml
5 [lexer_properties]
6 phpscript.mode=1
8 [settings]
9 # default extension used when saving files
10 #extension=php
12 # the following characters are these which a "word" can contains, see documentation
13 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
15 # if only single comment char is supported like # in this file, leave comment_close blank
16 # these comments are used for PHP, the comments used in HTML are in filetypes.xml
17 comment_open=/*
18 comment_close=*/
20 # set to false if a comment character/string should start at column 0 of a line, true uses any
21 # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
22 #command_example();
23 # setting to false would generate this
24 # command_example();
25 # This setting works only for single line comments
26 comment_use_indent=true
28 # context action command (please see Geany's main documentation for details)
29 context_action_cmd=
31 [build_settings]
32 # %f will be replaced by the complete filename
33 # %e will be replaced by the filename without extension
34 # (use only one of it at one time)
35 compiler=php -l "%f"
36 run_cmd=php "%f"
38 # use can also use something like this, to view your PHP or HTML files through a browser and webserver
39 #run_cmd=firefox http://localhost/test_site/%f