[llvm] r354505 - [clangd] Store index in '.clangd/index' instead of '.clangd-index'
    Ilya Biryukov via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Feb 20 11:08:06 PST 2019
    
    
  
Author: ibiryukov
Date: Wed Feb 20 11:08:06 2019
New Revision: 354505
URL: http://llvm.org/viewvc/llvm-project?rev=354505&view=rev
Log:
[clangd] Store index in '.clangd/index' instead of '.clangd-index'
Summary: To take up the .clangd folder for other potential uses in the future.
Reviewers: kadircet, sammccall
Reviewed By: kadircet
Subscribers: ioeric, MaskRay, jkorous, arphaman, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D58440
Modified:
    llvm/trunk/.gitignore
Modified: llvm/trunk/.gitignore
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/.gitignore?rev=354505&r1=354504&r2=354505&view=diff
==============================================================================
--- llvm/trunk/.gitignore (original)
+++ llvm/trunk/.gitignore Wed Feb 20 11:08:06 2019
@@ -72,8 +72,8 @@ docs/_build
 # VS2017 and VSCode config files.
 .vscode
 .vs
-# clangd background index
-.clangd-index
+# clangd index
+.clangd
 
 #==============================================================================#
 # Files created in tree by the Go bindings.
    
    
More information about the llvm-commits
mailing list