allow short opt -i for --inplace
This commit is contained in:
parent
f9b1997283
commit
cf6ffb4399
|
@ -26,13 +26,13 @@ line options can be used instead of .editorconfig files, or to override options
|
||||||
found in .editorconfig files.
|
found in .editorconfig files.
|
||||||
|
|
||||||
### Options
|
### Options
|
||||||
* **--help**: Display command line options
|
* **--help | -h**: Display command line options
|
||||||
* **--inplace**: A file name is required and the file will be edited in-place.
|
* **--inplace | -i**: A file name is required and the file will be edited in-place.
|
||||||
* **--align_switch_statements**: See **dfmt_align_switch_statements** below
|
* **--align_switch_statements**: See **dfmt_align_switch_statements** below
|
||||||
* **--brace_style**: See **brace_style** below
|
* **--brace_style**: See **brace_style** below
|
||||||
* **--end_of_line**: See **end_of_line** below
|
* **--end_of_line**: See **end_of_line** below
|
||||||
* **--indent_size**: See **indent_size** below
|
* **--indent_size**: See **indent_size** below
|
||||||
* **--indent_style**: See **indent_style** below
|
* **--indent_style | -t**: See **indent_style** below
|
||||||
* **--max_line_length**: See **max_line_length** below
|
* **--max_line_length**: See **max_line_length** below
|
||||||
* **--soft_max_line_length**: See **dfmt_soft_max_line_length** below
|
* **--soft_max_line_length**: See **dfmt_soft_max_line_length** below
|
||||||
* **--outdent_attributes**: See **dfmt_outdent_attributes** below
|
* **--outdent_attributes**: See **dfmt_outdent_attributes** below
|
||||||
|
|
|
@ -68,7 +68,7 @@ else
|
||||||
"help|h", &showHelp,
|
"help|h", &showHelp,
|
||||||
"indent_size", &optConfig.indent_size,
|
"indent_size", &optConfig.indent_size,
|
||||||
"indent_style|t", &optConfig.indent_style,
|
"indent_style|t", &optConfig.indent_style,
|
||||||
"inplace", &inplace,
|
"inplace|i", &inplace,
|
||||||
"max_line_length", &optConfig.max_line_length,
|
"max_line_length", &optConfig.max_line_length,
|
||||||
"soft_max_line_length", &optConfig.dfmt_soft_max_line_length,
|
"soft_max_line_length", &optConfig.dfmt_soft_max_line_length,
|
||||||
"outdent_attributes", &handleBooleans,
|
"outdent_attributes", &handleBooleans,
|
||||||
|
@ -163,9 +163,9 @@ private void printHelp()
|
||||||
https://github.com/Hackerpilot/dfmt
|
https://github.com/Hackerpilot/dfmt
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
--help | -h Print this help message
|
--help|h Print this help message
|
||||||
--inplace Edit files in place
|
--inplace|i Edit files in place
|
||||||
--version Print the version number and then exit
|
--version Print the version number and then exit
|
||||||
|
|
||||||
Formatting Options:
|
Formatting Options:
|
||||||
--align_switch_statements
|
--align_switch_statements
|
||||||
|
|
Loading…
Reference in New Issue