CL 解释器有语法高亮吗?
当调用“python”或“guile”或任何其他解释器时,我喜欢 read-eval-print 界面,但我怀念语法突出显示、paren 匹配和像 vim 中那样的快速导航。是否有任何程序可以为 shell/解释器提供更符合人体工程学的界面?
When invoking 'python' or 'guile' or any other interpreter, I like the read-eval-print interface, but I miss syntax highlighting, paren-matching, and quick navigation like within vim. Are there any programs that provide a more ergonomic interface to shells / interpreters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 python,请查看 bpython,它支持内联语法突出显示和父级匹配。 OTOH ipython 也非常有用,例如你可以只编写 help $function 它会运行 help( $function) 自动。
For python have a look at bpython, it supports inline syntax highlighting and parent-matching. OTOH ipython is also quite useful, for example you can just write help $function and it will run help($function) automatically.