[PATCH] D60605: [clangd] Revamp textDocument/onTypeFormatting.

Ilya Biryukov via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 30 01:18:32 PDT 2019


ilya-biryukov added a comment.

Found today:

  if (something)
    return; // some long comment
            // that takes two lines.^

Expected: comment on last line is not re-indented.
Actual (comment re-indented):

  if (something)
    return; // some long comment
  // that takes two lines.


Repository:
  rCTE Clang Tools Extra

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D60605/new/

https://reviews.llvm.org/D60605





More information about the cfe-commits mailing list