4

正如我在 erlang 社区中看到的格式化代码的常用方法是 emacs erlang 模式的方式。

有什么方法可以调用 emacs 来格式化 vim 中的代码(行、选定文本和孔文件)?

如果有人向我指出一些描述这种缩进逻辑的 emacs 文档,我也将不胜感激?

编辑:实际上我知道如何从 vim 调用某些东西,但我不知道从 emacs 端调用什么。

4

3 回答 3

6

intellij erlang 插件正是这样做的:ErlangEmacsFormatAction.java

/*
 * Copyright 2013 Sergey Ignatov
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 */

final GeneralCommandLine commandLine = new GeneralCommandLine();
commandLine.setExePath("emacs");
commandLine.addParameters("--batch", "--eval");

String s = "\n" +
    "(progn (find-file \"{0}\")\n" +
    "    (require ''erlang-start)\n" +
    "    (erlang-mode)\n" +
    "    (untabify (point-min) (point-max))\n" +
    "    (delete-trailing-whitespace)\n" +
    "    (erlang-indent-current-buffer)\n" +
    "    (write-region (point-min) (point-max) \"{1}\")\n" +
    "    (kill-emacs))";

  commandLine.addParameter(MessageFormat.format(s, virtualFile.getCanonicalPath(), tmpFile.getCanonicalPath()));

它以文件作为参数之一调用 emacs 批处理子进程。在 vimscript 中实现类似的东西应该很容易,检查Vim External Commands

于 2013-04-01T17:12:23.820 回答
3

我所知道的最能解决这个问题的是 vim 插件vimerlhttps ://github.com/jimenezrick/vimerl

这就是我使用的,虽然它并不完美,但它工作得相当好。

如果它与 Emacs 缩进完全一致,那就太好了,但对于让它运行所需的工作,这是一个好的开始。

于 2013-04-01T17:57:03.120 回答
0

您可能有兴趣研究vim-erlang提供的功能。

于 2014-04-02T05:47:39.213 回答