emacs-clang-complete-async

Emacs plugin providing asynchronous C/C++ code completion via libclang

brewmacoslinux
Try with needOr install directly
Source

About

Emacs plugin using libclang to complete C/C++ code

Commands

emacs

Examples

Enable clang-complete-async in Emacs by adding to init file$ echo '(require \'clang-complete-async)' >> ~/.emacs.d/init.el
Trigger asynchronous completion in C++ buffer with auto-complete$ M-x ac-complete-clang-async (within Emacs editing a .cpp file)
Configure clang completion with custom include paths in init file$ echo '(setq clang-complete-async-cpp-args \'-I/usr/local/include\')' >> ~/.emacs.d/init.el