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