qoocku / ac-sly

Emacs auto-complete source for SLY's Common Lisp IDE
10 stars 3 forks source link

ac-sly

Emacs auto-complete for SLY Common Lisp IDE. This is straightforward clone of excellent ac-slime module where all "slime" words have been replaced with "sly" word. It works (for me at least).

Setup

Install via MELPA, or alternatively do the following in your ~/.emacs or ~/.emacs.d/init.el init file.

(add-to-list 'load-path "/path/to/ac-sly")
(require 'ac-sly)

In either case add this to the init file as well:

(add-hook 'sly-mode-hook 'set-up-sly-ac)
(eval-after-load 'auto-complete
  '(add-to-list 'ac-modes 'sly-mrepl-mode))