将缓冲区发送到 emacs 中的 repl
我正在使用 mzscheme 的江湖模式,有没有办法将整个顶层内容发送(评估)到 REPL 窗口?我检查了按键绑定,但没有看到任何命令,只有用于发送最后一个 sexp、最后一个定义等的选项。
i'm using quack mode with mzscheme, is there a way to send(evaluate) the whole toplevel contents to the REPL window? i checked the key bindings but i don't see any commands for this, there are options only for sending last sexp, last definition etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Cc Cr - schema-send-region,但有时使用 Cx Ce 来计算点之前的表达式更方便...这些函数在 cmuscheme.el 中定义,应该从 quack 加载。
您可以查看我的文章,了解如何在 Emacs 中使用Scheme
C-c C-r - scheme-send-region, but sometimes it more handy to use C-x C-e to evaluate expression before point... These functions are defined in cmuscheme.el, that should be loaded from quack.
You can look to my article about working with Scheme from Emacs
有一个绑定Cc Cl,它绑定到
'scheme-load-file
,它允许您加载当前缓冲区的文件。There is the binding C-c C-l which is bound to
'scheme-load-file
, which will allow you to load the file for the current buffer.