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

9 lines
173 B
EmacsLisp

;; Set comments to be '%' to be matlab-compatible.
(add-hook
'octave-mode-hook
(lambda ()
(set (make-local-variable 'comment-start) "% ")
))
(provide 'mode-octave)