From ffc69a83ff026f3f300e02feea41b71fe1e09bd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82?= Date: Sat, 15 Jan 2022 00:35:23 +0100 Subject: [PATCH] Add .cache to gitignore (#3507) While compiling with `cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=YES` cmake can create a bunch of files in `.cache/`, indexing all codebase, allowing coc.nvim to make use of it, giving full rich autocompletion with all definitions etc. on NeoVim --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 09640e816..eca5bc34b 100644 --- a/.gitignore +++ b/.gitignore @@ -81,6 +81,7 @@ Thumbs.db .vscode .idea dependencies +.cache ### CMake ### CMakeLists.txt.user @@ -102,4 +103,4 @@ CMakeUserPresets.json Stamp tmp Source -Dependencies_* \ No newline at end of file +Dependencies_*