ambevar-dotfiles/.emacs.d/lisp/mode-octave.el

10 lines
189 B
EmacsLisp
Raw Normal View History

;; Octave
;; Set comments to be '%' to be matlab-compatible.
2016-10-14 14:03:30 +02:00
(add-hook-and-eval
'octave-mode-hook
(lambda ()
(set (make-local-variable 'comment-start) "% ")))
(provide 'mode-octave)