I'm trying to install (and run) scilab-mode, but the syntax highlighting does not work when I open .sci or .sce file.
I use the exact configuration described in the scilab.el package.
https://www.emacswiki.org/emacs/scilab.el
Any help?
I'm trying to install (and run) scilab-mode, but the syntax highlighting does not work when I open .sci or .sce file.
I use the exact configuration described in the scilab.el package.
https://www.emacswiki.org/emacs/scilab.el
Any help?
The help page clearly says that this is an old script which does not work with the current version of Emacs without adapting it. It's really a shame and I would also be interested, but this elisp script is simply orphaned.
(defvar default-fill-column (default-value 'fill-column)) (autoload 'scilab-mode "scilab") (add-to-list 'auto-mode-alist '("\\.\\(sci\\|sce\\)\\'" . scilab-mode)). Try that and report whetherscilab-modeworks for you afterwards. Note, that this does not includescilab-shellyet.default-fill-column.scilab-shellyet. Forscilab-shellto work you have to setupscilab-shell-command, e.g. by(defvar scilab-shell-command) (setq scilab-shell-command "scilab-adv-cli") (autoload 'scilab-shell "scilab"). But, they removedscilexfromscilab. So I do not know whetherscilab-shellwill work as expected for you. (Note, that I do not usescilabanymore so much. I useoctaveinstead because of Cygwin support and Matlab compatibility.)