Navigation Menu

Skip to content

Sodel-the-Vociferous/helm-company

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

helm-company.el Build Status

Helm interface for company-mode

Requirements

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Emacs Lisp 98.3%
  • Makefile 1.7%