2006-04-27 16:31:40 +00:00
# For complete documentation of this file, please see Geany's main documentation
2005-11-22 12:26:26 +00:00
[styling]
2006-03-10 21:44:12 +00:00
# foreground;background;bold;italic
2006-05-09 16:10:47 +00:00
default=0x000000;0xffffff;false;false
2006-07-27 20:57:13 +00:00
commentline=0x808080;0xffffff;false;false
number=0x400080;0xffffff;false;false
2006-03-10 21:44:12 +00:00
string=0x008000;0xffffff;false;false
character=0x008000;0xffffff;false;false
2006-07-27 20:57:13 +00:00
word=0x600080;0xffffff;true;false
triple=0x008020;0xffffff;false;false
tripledouble=0x404000;0xffffff;false;false
classname=0x003030;0xffffff;false;false
defname=0x000080;0xffffff;false;false
operator=0x300080;0xffffff;false;false
2006-03-10 21:44:12 +00:00
identifier=0x000000;0xffffff;false;false
2006-07-27 20:57:13 +00:00
commentblock=0x808080;0xffffff;false;false
2006-03-10 21:44:12 +00:00
stringeol=0x000000;0xe0c0e0;false;false
2007-07-07 15:39:25 +00:00
word2=0x800060;0xffffff;true;false
decorator=0x808000;0xffffff;false;false
2005-11-22 12:26:26 +00:00
[keywords]
# all items must be in one line
2007-03-01 22:16:58 +00:00
primary=and as assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try while with yield False None True
2006-04-27 16:31:40 +00:00
[settings]
# the following characters are these which a "word" can contains, see documentation
2006-11-23 15:48:02 +00:00
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
2006-04-27 16:31:40 +00:00
# if only single comment char is supported like # in this file, leave comment_close blank
comment_open=#
comment_close=
2006-07-27 20:57:13 +00:00
# set to false if a comment character/string should start at column 0 of a line, true uses any
2007-03-09 12:26:55 +00:00
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
2006-04-27 16:31:40 +00:00
#command_example();
# setting to false would generate this
# command_example();
# This setting works only for single line comments
comment_use_indent=true
2007-04-15 18:09:59 +00:00
# context action command (please see Geany's main documentation for details)
context_action_cmd=
2006-04-27 16:31:40 +00:00
[build_settings]
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
2006-11-25 17:07:59 +00:00
compiler=python -c "import py_compile; py_compile.compile('%f')"
2006-05-16 19:08:01 +00:00
run_cmd=python "%f"