Python 2 is EOL since almost two years now, so remove Python2 keywords and simplify the script to generate them.
84 lines
3.9 KiB
Plaintext
84 lines
3.9 KiB
Plaintext
# For complete documentation of this file, please see Geany's main documentation
|
|
[styling]
|
|
# Edit these in the colorscheme .conf file instead
|
|
default=default
|
|
commentline=comment_line
|
|
number=number_1
|
|
string=string_1
|
|
character=character
|
|
word=keyword_1
|
|
triple=string_2
|
|
tripledouble=string_2
|
|
classname=type
|
|
defname=function
|
|
operator=operator
|
|
identifier=identifier_1
|
|
commentblock=comment
|
|
stringeol=string_eol
|
|
word2=keyword_2
|
|
decorator=decorator
|
|
fstring=string_1
|
|
fcharacter=character
|
|
ftriple=string_2
|
|
ftripledouble=string_2
|
|
|
|
[keywords]
|
|
# all items must be in one line
|
|
# both primary and identifiers are auto-generated by scripts/update-python-identifiers.sh
|
|
# Python 3 keywords
|
|
primary=False None True __peg_parser__ and as assert async await break class continue def del elif else except finally for from global if import in is lambda nonlocal not or pass raise return try while with yield
|
|
# additional keywords, will be highlighted with style "word2"
|
|
# Python 3 builtins (minus ones in primary)
|
|
identifiers=ArithmeticError AssertionError AttributeError BaseException BlockingIOError BrokenPipeError BufferError BytesWarning ChildProcessError ConnectionAbortedError ConnectionError ConnectionRefusedError ConnectionResetError DeprecationWarning EOFError Ellipsis EnvironmentError Exception FileExistsError FileNotFoundError FloatingPointError FutureWarning GeneratorExit IOError ImportError ImportWarning IndentationError IndexError InterruptedError IsADirectoryError KeyError KeyboardInterrupt LookupError MemoryError ModuleNotFoundError NameError NotADirectoryError NotImplemented NotImplementedError OSError OverflowError PendingDeprecationWarning PermissionError ProcessLookupError RecursionError ReferenceError ResourceWarning RuntimeError RuntimeWarning StopAsyncIteration StopIteration SyntaxError SyntaxWarning SystemError SystemExit TabError TimeoutError TypeError UnboundLocalError UnicodeDecodeError UnicodeEncodeError UnicodeError UnicodeTranslateError UnicodeWarning UserWarning ValueError Warning ZeroDivisionError __build_class__ __debug__ __doc__ __import__ __loader__ __name__ __package__ __spec__ abs all any ascii bin bool breakpoint bytearray bytes callable chr classmethod compile complex copyright credits delattr dict dir divmod enumerate eval exec exit filter float format frozenset getattr globals hasattr hash help hex id input int isinstance issubclass iter len license list locals map max memoryview min next object oct open ord pow print property quit range repr reversed round set setattr slice sorted staticmethod str sum super tuple type vars zip
|
|
|
|
[lexer_properties]
|
|
fold.quotes.python=1
|
|
lexer.python.keywords2.no.sub.identifiers=1
|
|
|
|
[settings]
|
|
# default extension used when saving files
|
|
extension=py
|
|
|
|
# MIME type
|
|
mime_type=text/x-python
|
|
|
|
# the following characters are these which a "word" can contains, see documentation
|
|
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
|
|
|
|
# single comment char, like # in this file
|
|
comment_single=#\s
|
|
# multiline comments
|
|
#comment_open="""
|
|
#comment_close="""
|
|
|
|
# set to false if a comment character/string should start at column 0 of a line, true uses any
|
|
# indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
|
|
#command_example();
|
|
# setting to false would generate this
|
|
# command_example();
|
|
# This setting works only for single line comments
|
|
comment_use_indent=true
|
|
|
|
# context action command (please see Geany's main documentation for details)
|
|
context_action_cmd=
|
|
|
|
[indentation]
|
|
#width=4
|
|
# 0 is spaces, 1 is tabs, 2 is tab & spaces
|
|
#type=0
|
|
|
|
[build-menu]
|
|
# %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)
|
|
FT_00_LB=_Compile
|
|
FT_00_CM=@PYTHON_COMMAND@ -m py_compile "%f"
|
|
FT_00_WD=
|
|
FT_02_LB=_Lint
|
|
FT_02_CM=pep8 --max-line-length=80 "%f"
|
|
FT_02_WD=
|
|
error_regex=(.+):([0-9]+):([0-9]+)
|
|
EX_00_LB=_Execute
|
|
EX_00_CM=@PYTHON_COMMAND@ "%f"
|
|
EX_00_WD=
|