如何检查控制台中的括号......?
当我在控制台中输入scheme编程时,有很多括号,我不确定哪一个是打开的,哪一个是关闭的。
那么,有没有命令/热键可以检查相应的括号呢?
When I type scheme programming in console, there are many brackets and I am not sure which one is opened, which one is closed.
So, is there any command/hot key to check the corresponding brackets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你使用什么Scheme解释器?我建议您使用 IDE 而不是使用控制台,例如 Racket 非常用户友好,您'找到你的括号永远不会有困难。
And what Scheme interpreter are you using?. I advise you to use an IDE instead of using the console, for instance Racket is very user-friendly and you'll never have trouble finding your brackets.
如果已安装,请使用 rlwrap 运行您的方案解释器,这将提供括号匹配。
例如,我正在使用不提供读取行功能的 Chicken Scheme 解释器
csi
。我可以运行 rlwrap csi 并获得括号匹配、历史记录等。Run your scheme interpreter with
rlwrap
if you have it installed, which will provide paren-matching.For example, I am using the Chicken Scheme interpreter
csi
that does not provide read-line functionality. I can runrlwrap csi
and I will get paren-matching, history, and more.