bracket-lens-vscode
bracket-lens-vscode copied to clipboard
Detection with newlines in C++
The markers are not correct for (lines can broken if they are long and "clang-format" is used):
if (c1) {
for (a :
b) {
if (c2) {
} else {
}
}
}
But they are OK for:
if (c1) {
for (a : b) {
if (c2) {
} else {
}
}
}
I understand what you mean. I may take some improvements in the future, but please think of it as such a specification at now.