https://github.com/Sarcasm/company-irony.git
git clone 'git://github.com/Sarcasm/company-irony.git'
This package provides a company-mode asynchronous completion backend for the C, C++ and Objective-C languages.
The recommended way to install company-irony
and its dependencies is through a
package manager:
Using MELPA
M-x package-install RET company-irony RET
Using el-get
M-x el-get-install RET company-irony RET
Add company-irony
to your company backends.
~~~el (eval-after-load ‘company ’(add-to-list 'company-backends 'company-irony))
;; (optional) adds CC special commands to `company-begin-commands' in order to ;; trigger completion at interesting places, such as after scope operator ;; std::| (add-hook 'irony-mode-hook 'company-irony-setup-begin-commands) ~~~