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
Possibly related: #179
call_arg_parentheses = always functions correctly, adding parentheses to all calls:
call_arg_parentheses = always
foo 'a' foo "b" foo {}
is formatted as
foo('a') foo("b") foo({})
Adding a quote_style results in incorrect formatting for strings only:
quote_style
quote_style = double call_arg_parentheses = always
foo"a" foo"b" foo({})
The text was updated successfully, but these errors were encountered:
4ab859f
fix(CppCXY#186): call_arg_parentheses when quote_style
9e7f1f7
Thank you @CppCXY for the fast fix - it works perfectly.
Sorry, something went wrong.
No branches or pull requests
Possibly related: #179
Correct
call_arg_parentheses = always
functions correctly, adding parentheses to all calls:is formatted as
Incorrect
Adding a
quote_style
results in incorrect formatting for strings only:is formatted as
The text was updated successfully, but these errors were encountered: