-
Notifications
You must be signed in to change notification settings - Fork 728
Adding QuoteArgs Flag #1322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding QuoteArgs Flag #1322
Conversation
gregg-miskelly
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise LGTM
package.json
Outdated
| }, | ||
| "quoteArgs": { | ||
| "type": "boolean", | ||
| "description": "Flag to enable or disable quotes around 'debuggerPath'", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about this for the description:
Should arguments that contain characters that need to be quoted (example: spaces) be quoted? Defaults to 'true'. If set, the debugger command will no longer be automatically quoted.
src/tools/OptionsSchema.json
Outdated
| }, | ||
| "quoteArgs": { | ||
| "type": "boolean", | ||
| "description": "Should arguments that contain characters that need to be quoted (example: spaces) be quoted? Defaults to 'true'. If set, the debugger command will no longer be automatically quoted.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set [](start = 152, length = 3)
I think you want 'to false' here.
Addressing #1318
@gregg-miskelly