summaryrefslogtreecommitdiff
blob: 64ed0221adfa74fdda3a1091e6a6ea6a21b30f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;; matlab site-lisp configuration

(add-to-list 'load-path "@SITELISP@")

(autoload 'matlab-mode "matlab" "Enter Matlab mode." t)
(autoload 'matlab-eei-connect "matlab-eei"
  "Connects Emacs to Matlab's external editor interface.")
(add-to-list 'auto-mode-alist '("\\.m\\'" . matlab-mode))
(autoload 'matlab-shell "matlab" "Interactive Matlab mode." t)

(autoload 'mlint-minor-mode "mlint" nil t)
(add-hook 'matlab-mode-hook (lambda () (mlint-minor-mode 1)))

(autoload 'tlc-mode "tlc" "tlc Editing Mode" t)
(add-to-list 'auto-mode-alist '("\\.tlc$" . tlc-mode))
(setq tlc-indent-function t)