WrapEarnPass left a comment (geany/geany#4629) ```# both primary and identifiers are auto-generated by scripts/update-python-identifiers.sh``` by editing the config, the predefined config is rendered invalid.
To reconfigure python away from the auto-generated config, you may need to also reconfigure the lexer integration: ``` [lexer_properties] fold.quotes.python=1 lexer.python.keywords2.no.sub.identifiers=1 lexer.python.identifier.attributes=1 lexer.python.identifier.decorator=1 ``` These settings correspond to the lexer in use, [lexilla](https://github.com/ScintillaOrg/lexilla/blob/master/lexers/LexPython.cxx#L327) If your desired state is not supported by the lexer in use, you may need to change the lexer too. C/C++ do not use decorator configs. Changing the primary/secondary wouldn't affect much. ``` [keywords] # all items must be in one line primary=... secondary= # these are the Doxygen keywords docComment=... [lexer_properties] styling.within.preprocessor=1 lexer.cpp.track.preprocessor=0 ``` -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/4629#issuecomment-5152239804 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/4629/[email protected]>
