Open
Description
Current vim will indent as
tf.app.flags.DEFINE_string(
'log', 'INFO',
'The threshold for what messages will be logged DEBUG, INFO, WARN, ERROR, '
'or FATAL.')
with sw=2
. However, I want to have the following indent (google style):
tf.app.flags.DEFINE_string(
'log', 'INFO',
'The threshold for what messages will be logged DEBUG, INFO, WARN, ERROR, '
'or FATAL.')
In yapf, this is configurable by option CONTINUATION_INDENT_WIDTH
.