From 53961f956eac11d9384da225b5c5b0cb15cf104c Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Mon, 20 Apr 2015 10:19:34 -0700 Subject: [PATCH] Update documentation --- README.md | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 31f3933..e7149cf 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,23 @@ By default, dfmt reads its input from ```stdin``` and writes to ```stdout```. If a file name is specified on the command line, input will be read from the file instead, and output will be written to ```stdout```. ### Options +* ```--help```: * ```--inplace```: a file name is required and the file will be edited in-place. -* ```--braces=otbs```: Use ["The One True Brace Style"](https://en.wikipedia.org/wiki/Indent_style#Variant:_1TBS), placing open braces on - the same line as the previous token. -* ```--braces=allman```: Use ["Allman Style"](https://en.wikipedia.org/wiki/Indent_style#Allman_style), - placing opening braces on their own line. This is the default. -* ```--tabs```: Use tabs for indentation instead of spaces. +* ```--align_switch_statements```: See ```dfmt_align_switch_statements``` below +* ```--brace_style```: See ``brace_style``` below +* ```--end_of_line```: See ```end_of_line``` below +* ```--indent_size```: See ```indent_size``` below +* ```--indent_style```: See ```indent_style``` below +* ```--max_line_length```: See ```max_line_length``` below +* ```--soft_max_line_length```: See ```dfmt_soft_max_line_length``` below +* ```--outdent_attributes```: See ```dfmt_outdent_attributes``` below +* ```--outdent_labels```: See ```dfmt_outdent_labels``` below +* ```--space_after_cast```: See ```dfmt_space_after_cast``` below +* ```--split_operator_at_line_end```: See ```dfmt_split_operator_at_line_end``` below +* ```--tab_width```: See ```tab_width``` below + +### Example +```dfmt --inplace --space_after_cast=false --max_line_length=80 --soft_max_line_length=70 file.d``` ## Configuration **dfmt** uses [EditorConfig](http://editorconfig.org/) configuration files.