1

我会举一个清楚的例子。我经常需要在连接到我的计算机的设备上启动 nrepl 会话,我使用以下命令序列:

1. M-x nrepl
2. host: <I write the hostname here>
3. port: <I write the port here>

如何将此序列绑定到我可以键入的一个命令中?

4

1 回答 1

2

f1 f nrepl

nrepl is an interactive autoloaded compiled Lisp function in
`nrepl.el'.

(nrepl HOST PORT)

Connect nrepl to HOST and PORT.

因此(nrepl "0.0.0.0" "3000"),可能是您想要的那种东西。我没有使用它,因为我只是使用nrepl-jack-in,或者最近 cider-jack-in

于 2013-11-14T14:01:55.310 回答