Skip to content

Commit e6a03de

Browse files
committed
add --recurse to cmd line syntax
1 parent 6bae2c3 commit e6a03de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ asmformat.exe .\filename.asm --encoding utf8 --tabwidth 4 --compact
9898
## Formatter command line syntax
9999

100100
```
101-
[-path] file1.asm [dir\file2.asm ...] [--directory DIR] [--encoding ansi|utf8|utf16le] [--tabwidth N] [--spaces] [--linebreaks crlf|lf] [--compact] [--version] [--nologo] [--help]
101+
[-path] file1.asm [dir\file2.asm ...] [--directory DIR] [--recurse] [--encoding ansi|utf8|utf16le] [--tabwidth N] [--spaces] [--linebreaks crlf|lf] [--compact] [--version] [--nologo] [--help]
102102
```
103103

104104
Options and arguments mentioned in square brackets `[]` are optional

asmformat/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ int main(int argc, char* argv[]) try
8989
}
9090

9191
const bool nologo = std::find(all_params.begin(), all_params.end(), "--nologo") != all_params.end();
92-
constexpr const char* syntax = " [-path] file1.asm [dir\\file2.asm ...] [--directory DIR] [--encoding ansi|utf8|utf16le] [--tabwidth N] [--spaces] [--linebreaks crlf|lf] [--compact] [--version] [--nologo] [--help]";
92+
constexpr const char* syntax = " [-path] file1.asm [dir\\file2.asm ...] [--directory DIR] [--recurse] [--encoding ansi|utf8|utf16le] [--tabwidth N] [--spaces] [--linebreaks crlf|lf] [--compact] [--version] [--nologo] [--help]";
9393

9494
if (!nologo)
9595
{

0 commit comments

Comments
 (0)