如何在 GNU Emacs 中安装 MATLAB 模式?

发布于 2024-08-04 02:32:06 字数 125 浏览 4 评论 0原文

是否有适用于 MATLAB 和/或 Octave 文件的 Emacs 主要模式?对于那些不知道的人,MATLAB 文件通常具有“.m”文件扩展名。

我的主要兴趣是 GNU Emacs,但 XEmacs 提示也将受到赞赏。

Is there an Emacs major mode for MATLAB and / or Octave files? For those who don't know, MATLAB files generally have a ".m" file extension.

My primary interest is GNU Emacs but XEmacs tips would also be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

孤者何惧 2024-08-11 02:32:06

您是否尝试过标准 emacs 发行版中的八度模式?我发现这效果很好。

如果您发现它与 .m 扩展名没有关联,请将其添加到您的 .emacs 中:

(setq auto-mode-alist
      (cons
       '("\\.m$" . octave-mode)
       auto-mode-alist))

Have you tried the octave-mode that is part of the standard emacs distribution? I have found that this works well.

If you're finding it doesn't associate the .m extension, add this to your .emacs:

(setq auto-mode-alist
      (cons
       '("\\.m$" . octave-mode)
       auto-mode-alist))
埖埖迣鎅 2024-08-11 02:32:06

我想你会想要 http://matlab-emacs.sourceforge.net/ ?请阅读那里的说明。

我几年前在 XEmacs 中使用过它的祖先,所以它肯定曾经支持它,但我相信作者是 GNUEmacs 用户。编写它的人(Eric Ludlam)是 Mathworks 的员工,因此它的官方凭据模糊。

You'll be wanting http://matlab-emacs.sourceforge.net/ , I would imagine? Read the instructions there.

I used an ancestor of this years ago in XEmacs, so it certainly used to have support for it, but I believe the author is an GNUEmacs user. The guy who wrote it (Eric Ludlam) is a Mathworks employee, so it has vague official credentials.

静谧 2024-08-11 02:32:06

未内置于 GNU Emacs 22 中。我发现了 matlab 模式 在网络上 (elisp) ,但它可以追溯到 2000 年左右,所以我不知道你有什么样的支持。

要安装,您必须让 emacs 加载它,然后调用该模式。您可以交互地发出load-file(使用Mx load-file)来测试它。

Not built in in GNU Emacs 22. I found a matlab mode on the web (elisp), but it dates from circa 2000, so I don't know what kind of support you have.

To install you must get emacs to load it, then invoke the mode. You can interactively issue a load-file (With M-x load-file) to test it.

萌辣 2024-08-11 02:32:06

有一个来自 matlab.el 文件。 mathworks.com/matlabcentral/fileexchange/authors/1279" rel="nofollow noreferrer">Matthew Wette 于 MathWorks 文件交换。该文件似乎自 1997 年以来就没有更新过(!),并且只是简单地说它是“用于 Emacs 的早期版本”,但希望它仍然对您有用。

There's a matlab.el file from Matthew Wette on The MathWorks File Exchange. The file doesn't appear to have been updated since 1997 (!), and simply says it is "for early versions of Emacs", but hopefully it will still be of use to you.

毁我热情 2024-08-11 02:32:06

我最近从 Matlab Central 文件交换下载了 Emacs 的 Matlab 模式。效果很好。不要确切地记得我在哪里找到它的,如果你遇到困难请告诉我,我会更努力地寻找。

I recently downloaded a Matlab mode for Emacs from the Matlab Central file exchange. Works just fine. Don't recall exactly where I found it, if you have trouble let me know and I will look harder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文