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

Ilya Biryukov via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 26 06:33:15 PDT 2019


ilya-biryukov added a comment.

Input:

  if (something)
    foo; // a comment^

Expected:

  if (something)
    foo; // a comment
  ^

Actual (indented to align with a comment):

  if (something)
    foo; // a comment
         ^


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