mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
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
This commit is contained in:
parent
700c9fc4f2
commit
ffc69a83ff
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -81,6 +81,7 @@ Thumbs.db
|
|||
.vscode
|
||||
.idea
|
||||
dependencies
|
||||
.cache
|
||||
|
||||
### CMake ###
|
||||
CMakeLists.txt.user
|
||||
|
@ -102,4 +103,4 @@ CMakeUserPresets.json
|
|||
Stamp
|
||||
tmp
|
||||
Source
|
||||
Dependencies_*
|
||||
Dependencies_*
|
||||
|
|
Loading…
Reference in a new issue