http://www.emacswiki.org/emacs/auto-complete.el
;; To use this extension, locate this file to load-path directory, ;; and add the following code to your .emacs. ;; ------------------------------ ;; (require 'auto-complete) ;; (global-auto-complete-mode t) ;; ------------------------------ ;; After installation, you can try this: ;; ;; 1. Switch to emacs-lisp-mode buffer such as .emacs ;; 2. Goto anywhere ;; 3. Type "def" ;; 4. You may see a pop menu after the cursor like: ;; def-!- ;; +-----------------+ ;; |defun | <- highlight ;; |defvar | ;; |defmacro | ;; | ... | ;; +-----------------+ ;; 5. You can complete by seleting the menu item ;; by pressing TAB, <down>, <up>, and RET.

