From: Sebastian D. <seb...@ma...> - 2014-09-23 11:22:14
|
Hi everyone, i installed matlab-mode via Elpa. Everything is working great, just the Errormessages(for example: Error in run (line 74)) does not have a link to follow the error to its source. Do you have a solution for this kind of problem? Settings: * Load library #+BEGIN_SRC emacs-lisp (load-library "matlab-load") #+END_SRC * start matlab server #+BEGIN_SRC emacs-lisp (server-start) (autoload 'matlab-mode "matlab" "Matlab Editing Mode" t) (add-to-list 'auto-mode-alist '("\\.m$" . matlab-mode)) (setq matlab-indent-function t) (add-hook 'matlab-mode-hook 'auto-complete-mode) #+END_SRC * shell command #+BEGIN_SRC emacs-lisp (setq matlab-shell-command "matlab") #+END_SRC * cedet #+begin_src emacs-lisp (matlab-cedet-setup) #+end_src Thanks a lot, Seb |