company-irony

https://github.com/Sarcasm/company-irony.git

git clone 'git://github.com/Sarcasm/company-irony.git'
34

Completion backend for irony-mode

This package provides a company-mode asynchronous completion backend for the C, C++ and Objective-C languages.

company-irony demo gif

Installation

The recommended way to install company-irony and its dependencies is through a package manager:

Configuration

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) ~~~