Adding to auto-mode-alist
Getty Ritter
9 years ago
1 | 1 | ;; gidl-mode.el --- a simple major mode for editing GIDL files. |
2 | 2 | |
3 |
;; Version: 20150507.000 |
|
3 | ;; Version: 20150507.0001 | |
4 | 4 | ;; Author: Getty Ritter |
5 | 5 | ;; Url: https://github.com/aisamanra/gidl-mode |
6 | 6 | |
31 | 31 | (setq comment-start "--") |
32 | 32 | (setq comment-end "")) |
33 | 33 | |
34 | ;;;###autoload | |
35 | (add-to-list 'auto-mode-alist '("\\.i?g?idl\\'" . gidl-mode)) | |
36 | ||
34 | 37 | (provide 'gidl-mode) |
35 | 38 | |
36 | 39 | ;;; gidl-mode.el ends here |