[PATCH] D51977: [clangd] Clarify and hide -index flag.
Eric Liu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 12 04:56:11 PDT 2018
ioeric created this revision.
ioeric added reviewers: sammccall, ilya-biryukov.
Herald added subscribers: cfe-commits, kadircet, arphaman, jkorous, MaskRay.
The wording implies global index support, which is confusing.
As most users shouldn't care about this flag, also make it hidden to avoid
further confusion.
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D51977
Files:
clangd/tool/ClangdMain.cpp
Index: clangd/tool/ClangdMain.cpp
===================================================================
--- clangd/tool/ClangdMain.cpp
+++ clangd/tool/ClangdMain.cpp
@@ -130,10 +130,11 @@
static llvm::cl::opt<bool> EnableIndex(
"index",
- llvm::cl::desc("Enable index-based features such as global code completion "
- "and searching for symbols. "
- "Clang uses an index built from symbols in opened files"),
- llvm::cl::init(true));
+ llvm::cl::desc(
+ "Enable index-based features. By default, clangd maintains an index "
+ "built from symbols in opened files. Static/global index support needs "
+ "to enabled separatedly."),
+ llvm::cl::init(true), llvm::cl::Hidden);
static llvm::cl::opt<bool>
ShowOrigins("debug-origin",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D51977.165061.patch
Type: text/x-patch
Size: 810 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180912/6d740477/attachment.bin>
More information about the cfe-commits
mailing list