From 2de336c39e156b816ecd2da53fd5b8f7fbec817b Mon Sep 17 00:00:00 2001 From: Stefan Koch Date: Fri, 20 Oct 2017 13:02:40 +0200 Subject: [PATCH] document --space_before_function_parameters --- README.md | 2 ++ src/dfmt/main.d | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b7669b..7aff4cf 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ found in .editorconfig files. * **--soft_max_line_length**: See **dfmt_soft_max_line_length** below * **--outdent_attributes**: See **dfmt_outdent_attributes** below * **--space_after_cast**: See **dfmt_space_after_cast** below +* **--space_before_function_parameters**: See **dfmt_space_before_function_parameters** below * **--split_operator_at_line_end**: See **dfmt_split_operator_at_line_end** below * **--tab_width**: See **tab_width** below * **--selective_import_space**: See **dfmt_selective_import_space** below @@ -100,6 +101,7 @@ dfmt_outdent_attributes (Not yet implemented) | `true`, `false` | `true` | Decre dfmt_split_operator_at_line_end | `true`, `false` | `false` | Place operators on the end of the previous line when splitting lines. dfmt_space_after_cast | `true`, `false` | `true` | Insert space after the closing paren of a `cast` expression. dfmt_space_after_keywords (Not yet implemented) | `true`, `false` | `true` | Insert space after `if`, `while`, `foreach`, etc, and before the `(`. +dfmt_space_before_function_parameters | `true`, `false` | `false` | Insert space before the opening paren of a function parameter list. dfmt_selective_import_space | `true`, `false` | `true` | Insert space after the module name and before the `:` for selective imports. dfmt_compact_labeled_statements | `true`, `false` | `true` | Place labels on the same line as the labeled `switch`, `for`, `foreach`, or `while` statement. dfmt_template_constraint_style | `conditional_newline_indent` `conditional_newline` `always_newline` `always_newline_indent` | `conditional_newline_indent` | Control the formatting of template constraints. diff --git a/src/dfmt/main.d b/src/dfmt/main.d index cc7e1a6..bdd02fa 100644 --- a/src/dfmt/main.d +++ b/src/dfmt/main.d @@ -83,7 +83,7 @@ else "outdent_attributes", &handleBooleans, "space_after_cast", &handleBooleans, "selective_import_space", &handleBooleans, - "space_before_function_parameters", &handleBooleans, + "space_before_function_parameters", &handleBooleans, "split_operator_at_line_end", &handleBooleans, "compact_labeled_statements", &handleBooleans, "tab_width", &optConfig.tab_width,