This makes the formatter of raw string literals use NestedBlockIndent for
determining the 0 column of the content inside. This makes the formatting use
less horizonal space and fixes a case where two newlines before and after the
raw string prefix were selected instead of a single newline after it:
Before:
aaaa = ffff(
R"pb(
key: value)pb");After:
aaaa = ffff(R"pb(
key: value)pb");