Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Why is indenting inside raw string literals is disabled?

I'm trying to understand the rationale for not allowing indenting inside raw string literals:
http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/diff/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/actions/IndentAction.java?id=53b2b45d96c628d52d77d0fe64426ad40ef04b4f

As a result hitting the Tab key in the second line of the following code snippet has no effect. 
const char* s = R"(

)";

Why is this the desired behavior?

-sergey

Back to the top