[clang-tools-extra] a67beef - [clangd] Enable AKA type printing by default

Kadir Cetinkaya via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 15 01:48:00 PDT 2022


Author: Kadir Cetinkaya
Date: 2022-06-15T10:43:17+02:00
New Revision: a67beef3acac4ab4fc009f492d5b3f510c48420b

URL: https://github.com/llvm/llvm-project/commit/a67beef3acac4ab4fc009f492d5b3f510c48420b
DIFF: https://github.com/llvm/llvm-project/commit/a67beef3acac4ab4fc009f492d5b3f510c48420b.diff

LOG: [clangd] Enable AKA type printing by default

This has been tested on a large set of c++ developers for a long while,
without any crashes or complaints.

Differential Revision: https://reviews.llvm.org/D127833

Added: 
    

Modified: 
    clang-tools-extra/clangd/Config.h

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/clangd/Config.h b/clang-tools-extra/clangd/Config.h
index ec7247121d5cd..312ca3b7af90a 100644
--- a/clang-tools-extra/clangd/Config.h
+++ b/clang-tools-extra/clangd/Config.h
@@ -129,7 +129,7 @@ struct Config {
   /// Configures hover feature.
   struct {
     /// Whether hover show a.k.a type.
-    bool ShowAKA = false;
+    bool ShowAKA = true;
   } Hover;
 
   struct {


        


More information about the cfe-commits mailing list