0

Geiser can be configured to read ~/.guile when running Guile from within Emacs. I would like to append command line options to the argument list passed to guile.

Is there a variable that holds the command line options?

4

2 回答 2

0

我有同样的问题,但是当我禁用时

;;(使用模块 (ice-9 colorized)) ;;(activate-colorized)

在我的 ~/.guile-geiser 文件中,问题消失了。

在 Emacs 中也不需要 readline,只需按 C-up/down 即可查看历史记录。

;;(使用模块 (ice-9 readline)) ;;(activate-readline)

于 2020-07-21T19:18:40.060 回答
0

自定义geiser-guile-binary为字符串列表(将“值”按钮更改为“重复”)。第一个应该是“guile”(或系统上的任何 guile 二进制文件),下一个条目应该是每个包含一个参数的字符串。

您可以通过放入(insert (pp (geiser-guile--parameters)))一个加载了 geiser 的方案文件然后运行 ​​Mx来仔细检查它eval-last-sexp

于 2016-08-23T03:53:36.837 回答