Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam McCall <sam.mccall@gmail.com>2020-07-14 20:04:55 +0300
committerSam McCall <sam.mccall@gmail.com>2020-07-14 22:44:25 +0300
commit00d97b758e8d3286abb7bd07899e4d3aed6e8165 (patch)
treeec2d6ebb219820eae8acf62a4da4eaf4c17327a1 /clang-tools-extra
parent368eb7712f9f19f93f3e318d8b16e732436fb9c4 (diff)
[clangd] Config: on by default
Summary: (Possible to flip back on the branch if this breaks things) Reviewers: kadircet Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D83790
Diffstat (limited to 'clang-tools-extra')
-rw-r--r--clang-tools-extra/clangd/tool/ClangdMain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clangd/tool/ClangdMain.cpp b/clang-tools-extra/clangd/tool/ClangdMain.cpp
index 780495530856..7bce1c062e81 100644
--- a/clang-tools-extra/clangd/tool/ClangdMain.cpp
+++ b/clang-tools-extra/clangd/tool/ClangdMain.cpp
@@ -446,7 +446,7 @@ opt<bool> EnableConfig{
"\tMac OS: ~/Library/Preferences/\n"
"\tOthers: $XDG_CONFIG_HOME, usually ~/.config\n"
"Configuration is documented at https://clangd.llvm.org/config.html"),
- init(false),
+ init(true),
};
/// Supports a test URI scheme with relaxed constraints for lit tests.