auto-complete mode in emacs

Emacs as an IDE works well with all kinds of the environment (C lisp elisp slime java python). But his auto-complete plugins sucks. I use hippie-expand before I met auto-complete. Auto-complete was the best auto-complete package in the present moment.

This package is so simple that can be a tutorial on how to write a minor-mode package. And the users also easy to configure or modify it according to their needs.

after a search in google, I add a package to use auto-complete in slime environment to develop a common lisp. Also, add a package to Let it search ac-source from etags files.

I upload modified package into google drive:
https://docs.google.com/open?id=0B5yiz3j-W7mca3VtYUpWTTl1VDg

Install tutorial:

1. copy *.el to a directory like (~/.emacs.d/auto-complete/)
2. copy dict directory to a directiory like (~/.emacs.d/auto-complete/dict) change symbol ac-dictionary-directories according dict directory
(add-to-list 'ac-dictionary-directories "~/.emacs.d/auto-complete/dict")
3. Let emacs to load my-auto-complete.el:
add following into you emacs config file (like: ~/.emacs)
  
(add-to-list 'load-path "~/.emacs.d/auto-complete") (load "my-auto-complete")
4. (Optional) byte compile *.el file to speed up load time.
M-x byte-recompile-directory
choose (~/.emacs.d/auto-complete/)

Comments

Popular posts from this blog

Bluedroid stack in android

How to setup a NAT server?

Network programming in elisp