DCD/editors/emacs
Hackerpilot ad8c5d36a0 Update README.md
Typo
2013-08-11 07:39:17 +00:00
..
README.md Update README.md 2013-08-11 07:39:17 +00:00
ac-dcd.el First cut at emacs auto-complete support 2013-08-09 20:39:57 -05:00

README.md

#EMACS Integration

This is a first cut at emacs support. It is far from complete.

##Requirements

  • You must have the auto-complete package

  • This integration will not automatically start dcd-server, so you'll have to do that yourself.

  • Make sure dcd-client is in your path

  • Add the following to your .emacs

      (require 'ac-dcd)
      (add-to-list 'ac-modes 'd-mode)
      (defun ac-d-mode-setup ()
        (setq ac-sources (append '(ac-source-dcd) ac-sources))
        (global-auto-complete-mode t))
      (add-hook 'd-mode-hook 'ac-d-mode-setup)