From: Human Dunnil Date: 2006-02-05T09:00:09+09:00 Subject: ruby-mode in emacs Hi, I'm new to emacs, just bought a book and started my way into it. How could I enable ruby-mode in emacs? I copied all 4 *.el files to C:\emacs-21.3\lisp\progmodes, and enabled _global font lock_ (through the menu) I have the syntax coloring but not auto-complete or anything else. How do I enable auto-complete? and is there another features in these modes? Thanks, - H Here is my .emacs file: (autoload 'ruby-mode "ruby-mode" "Ruby editing mode." t) (setq auto-mode-alist (cons '("\\.rb$" . ruby-mode) auto-mode-alist)) (custom-set-variables ;; custom-set-variables was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. '(case-fold-search t) '(current-language-environment "Latin-1") '(default-input-method "latin-1-prefix") '(global-font-lock-mode t nil (font-lock))) (custom-set-faces ;; custom-set-faces was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. )