comparison .emacs @ 842:03f9657514e9

while we might not want Octave *that* much, we will never want OCAML
author Jeff Hammel <k0scist@gmail.com>
date Sun, 09 Jul 2017 15:01:16 -0700
parents d0b975ffabdf
children 1c3f6daa1190
comparison
equal deleted inserted replaced
841:d471e0269170 842:03f9657514e9
92 (setq auto-mode-alist (cons '("\\.zcml$" . sgml-mode) auto-mode-alist)) 92 (setq auto-mode-alist (cons '("\\.zcml$" . sgml-mode) auto-mode-alist))
93 (setq auto-mode-alist (cons '("\\.pt$" . sgml-mode) auto-mode-alist)) 93 (setq auto-mode-alist (cons '("\\.pt$" . sgml-mode) auto-mode-alist))
94 (setq auto-mode-alist (cons '("\\.cpt$" . sgml-mode) auto-mode-alist)) 94 (setq auto-mode-alist (cons '("\\.cpt$" . sgml-mode) auto-mode-alist))
95 (setq auto-mode-alist (cons '("\\.cpy$" . python-mode) auto-mode-alist)) 95 (setq auto-mode-alist (cons '("\\.cpy$" . python-mode) auto-mode-alist))
96 (setq auto-mode-alist (cons '("\\.vpy$" . python-mode) auto-mode-alist)) 96 (setq auto-mode-alist (cons '("\\.vpy$" . python-mode) auto-mode-alist))
97 (setq auto-mode-alist
98 (cons '("\\.m$" . octave-mode) auto-mode-alist))
97 99
98 ;; set the grep command....for some reason 100 ;; set the grep command....for some reason
99 (setq grep-command "grep -liE") 101 (setq grep-command "grep -liE")
100 102
101 103