3 ==> To set up Emacs to automatically edit files ending in .d[i] using D-mode
4 add the following to your ~/.emacs file (GNU Emacs) or ~/.xemacs/init.el
6 (autoload 'd-mode "d-mode" "Major mode for editing D code." t)
7 (add-to-list 'auto-mode-alist '("\\.d[i]?\\'" . d-mode))