tuhdo / helm-company

Helm interface for company-mode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

helm-company.el Build Status

Helm interface for company-mode

Requirements

Installation

Installation

Manual

Just drop helm-company.el. somewhere in your load-path.

(add-to-list 'load-path "~/somewhere")

MELPA

If you're an Emacs 24 user or you have a recent version of package.el you can install helm-company.el from the MELPA repository.

Configuration

Add the following to your Emacs init file.

(autoload 'helm-company "helm-company") ;; Not necessary if using ELPA package
(eval-after-load 'company
  '(progn
     (define-key company-mode-map (kbd "C-:") 'helm-company)
     (define-key company-active-map (kbd "C-:") 'helm-company)))

Usage

helm-company

Select company-complete candidates by helm. It is useful to narrow company candidates.

About

Helm interface for company-mode

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 96.9%Language:Makefile 3.1%