gitextract_3qip853h/ ├── .flake8 ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── mk/ │ ├── color.mk │ └── debug_code.mk ├── rplugin/ │ └── python3/ │ └── deoplete/ │ └── sources/ │ ├── cmake.py │ ├── deoplete_clang/ │ │ ├── clang_data.py │ │ ├── helper.py │ │ └── profiler.py │ └── deoplete_clang.py └── tests/ ├── ast.py ├── code_completion.py ├── deoplete-clang.vim ├── hello_world.m ├── requirements.txt ├── test.c ├── test.cpp └── test_cmake_source.py