From a67beef3acac4ab4fc009f492d5b3f510c48420b Mon Sep 17 00:00:00 2001 From: Kadir Cetinkaya Date: Wed, 15 Jun 2022 10:04:48 +0200 Subject: [PATCH] [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 --- clang-tools-extra/clangd/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/clangd/Config.h b/clang-tools-extra/clangd/Config.h index ec7247121d5c..312ca3b7af90 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 {