kobarity wrote: > Gustaf Waldemarson wrote: > > "Increase indentation inside parens of a block. > > When this variable is set to non-nil and the contents of a block > > inside parens are indented to the same level as outside the same > > block, increase the indentation of the line." > > Thank you for your suggestion. I think this is more readable and > would like to make changes in this direction. I have concluded that it's better to include an example in the docstring of `python-indent-block-paren-deeper'. How about the following? I also attached the updated patch. "Increase indentation inside parens of a block. If non-nil, increase the indentation of the lines inside parens in a header of a block when they are indented to the same level as the body of the block: if (some_expression and another_expression): do_something() instead of: if (some_expression and another_expression): do_something() This variable only works if the opening paren is followed by non-whitespace characters on the same line. Modify `python-indent-def-block-scale' to customize the case where non-whitespace character does not follow the opening paren on the same line." Best regards, kobarity