Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我输入 guile 或 mzscheme 的 REPL
(define x 15)
然后按箭头键我得到 (define x 15)^[[D
是终端问题吗?或者需要配置什么?为简单的编辑重写一行是痛苦的
我找到了 Guile 的答案,添加它~/.guile会减少它:
~/.guile
(use-modules (ice-9 readline)) (activate-readline)
我不知道 guile 是什么,但是对于 mzscheme,你可以输入
(require readline)
以交互方式启用您正在寻找的箭头键行为。要在 REPL 启动时启用此行为,请使用
mzscheme -il readline