vi readline 对 jruby 的 irb 的支持
我最近开始使用jruby。在正常的ruby的irb中,由于.editrc文件
.editrc文件
bind -v,
我得到了vi readline支持,但是jruby似乎没有使用该文件,并且也没有从.inuptrc文件中获取vi readline。
有没有办法在 jirb 中获得 vi readline 支持?
I recently started using jruby. In normal ruby's irb, I get vi readline support due to the .editrc file
.editrc file
bind -v
But jruby doesn't seem to use that file, and doesn't get the vi readline from the .inuptrc file either.
Is there a way to get vi readline support in jirb?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JRuby 不使用 libedit 或 readline,因此不会读取这些文件。
此外,JRuby不支持vi编辑模式。
诚然,JRuby 的 Readline 支持还有很多不足之处。
JRuby doesn't use libedit or readline, so those files are not read.
Furthermore, JRuby does not support vi editing mode.
Admittedly, JRuby's Readline support has a lot to be desired.