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
2010-10-28 12:58:12 +00:00
default=default
commentline=comment
number=number
string=string
character=string
2010-11-08 13:27:32 +00:00
word=keyword
2010-10-28 12:58:12 +00:00
triple=string
tripledouble=commentdoc
classname=type,bold
defname=function
operator=operator
identifier=default
commentblock=comment
stringeol=stringeol
# flip bold for identifiers
2010-11-10 18:04:35 +00:00
word2=keyword2,bold
2010-10-28 12:58:12 +00:00
decorator=preprocessor
2005-11-22 12:26:26 +00:00
[keywords]
# all items must be in one line
2011-06-14 21:23:19 +00:00
primary=and as assert break cdef cimport class continue cpdef 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
2008-03-17 17:22:24 +00:00
# additional keywords, will be highlighted with style "word2"
2010-02-06 16:14:41 +00:00
# these are the builtins for Python 2.5 created with ' '.join(dir(__builtins__))
2010-07-18 17:56:12 +00:00
identifiers=ArithmeticError AssertionError AttributeError BaseException BufferError BytesWarning DeprecationWarning EOFError Ellipsis EnvironmentError Exception False FloatingPointError FutureWarning GeneratorExit IOError ImportError ImportWarning IndentationError IndexError KeyError KeyboardInterrupt LookupError MemoryError NameError None NotImplemented NotImplementedError OSError OverflowError PendingDeprecationWarning ReferenceError RuntimeError RuntimeWarning StandardError StopIteration SyntaxError SyntaxWarning SystemError SystemExit TabError True TypeError UnboundLocalError UnicodeDecodeError UnicodeEncodeError UnicodeError UnicodeTranslateError UnicodeWarning UserWarning ValueError Warning ZeroDivisionError __debug__ __doc__ __import__ __name__ __package__ abs all any apply basestring bin bool buffer bytearray bytes callable chr classmethod cmp coerce compile complex copyright credits delattr dict dir divmod enumerate eval execfile exit file filter float format frozenset getattr globals hasattr hash help hex id input int intern isinstance issubclass iter len license list locals long map max min next object oct open ord pow print property quit range raw_input reduce reload repr reversed round set setattr slice sorted staticmethod str sum super tuple type unichr unicode vars xrange zip
2006-04-27 16:31:40 +00:00
2009-11-18 16:48:17 +00:00
[lexer_properties]
fold.comment.python=1
fold.quotes.python=1
2006-04-27 16:31:40 +00:00
[settings]
2007-11-01 16:33:06 +00:00
# default extension used when saving files
2010-10-20 16:15:39 +00:00
extension=py
2007-11-01 16:33:06 +00:00
2006-04-27 16:31:40 +00:00
# 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
2011-03-20 15:02:22 +00:00
# single comment char, like # in this file
comment_single=#
# multiline comments
#comment_open="""
#comment_close="""
2006-04-27 16:31:40 +00:00
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)
2010-09-26 18:09:13 +00:00
compiler=python -m py_compile "%f"
2006-05-16 19:08:01 +00:00
run_cmd=python "%f"