Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 953 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 953 Bytes

ac-helm.el

Helm interface for auto-complete. A ac-anything.el fork ported to Helm.

Installation

If you choose not to use one of the convenient packages in Melpa, you'll need to add the directory containing ac-helm.el to your load-path, and then (require 'ac-helm).

Usage

configuration

Add the following to your emacs init file:

(require 'ac-helm)  ;; Not necessary if using ELPA package
(global-set-key (kbd "C-:") 'ac-complete-with-helm)
(define-key ac-complete-mode-map (kbd "C-:") 'ac-complete-with-helm)

command

The following command is defined:

ac-complete-with-helm

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