diff --git a/idea/src/org/jetbrains/kotlin/idea/formatter/KotlinLanguageCodeStyleSettingsProvider.kt b/idea/src/org/jetbrains/kotlin/idea/formatter/KotlinLanguageCodeStyleSettingsProvider.kt index 7108b129bc7..c1285e1c698 100644 --- a/idea/src/org/jetbrains/kotlin/idea/formatter/KotlinLanguageCodeStyleSettingsProvider.kt +++ b/idea/src/org/jetbrains/kotlin/idea/formatter/KotlinLanguageCodeStyleSettingsProvider.kt @@ -285,6 +285,12 @@ class KotlinLanguageCodeStyleSettingsProvider : LanguageCodeStyleSettingsProvide ) consumer.renameStandardOption(CodeStyleSettingsCustomizable.WRAPPING_SWITCH_STATEMENT, "'when' statements") consumer.renameStandardOption("FIELD_ANNOTATION_WRAP", "Property annotations") + consumer.renameStandardOption("METHOD_PARAMETERS_WRAP", "Function declaration parameters") + consumer.renameStandardOption("CALL_PARAMETERS_WRAP", "Function call arguments") + consumer.renameStandardOption("METHOD_CALL_CHAIN_WRAP", "Chained function calls") + consumer.renameStandardOption("METHOD_ANNOTATION_WRAP", "Function annotations") + consumer.renameStandardOption(CodeStyleSettingsCustomizable.WRAPPING_METHOD_PARENTHESES, "Function parentheses") + showCustomOption( KotlinCodeStyleSettings::ALIGN_IN_COLUMNS_CASE_BRANCH, "Align 'when' branches in columns",