We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sometimes users are used to a habit, such as calling programs with the native style switches.
On windows, it is common to launch an executable using both of these methods:
app.js /s /w /i /t /c /h
app.js -s -w -i- -t -c -h
Could I ask for a feature that would enable users to use Windows-style switches if we enabled them in the app?
This should be either:
args.setOpt(args.WIN_STYLE, true)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
Sometimes users are used to a habit, such as calling programs with the native style switches.
On windows, it is common to launch an executable using both of these methods:
app.js /s /w /i /t /c /h
app.js -s -w -i- -t -c -h
Could I ask for a feature that would enable users to use Windows-style switches if we enabled them in the app?
This should be either:
args.setOpt(args.WIN_STYLE, true)
The text was updated successfully, but these errors were encountered: