如何在 Ruby 的 IRB 中启用自动完成

发布于 2024-08-03 11:15:54 字数 102 浏览 5 评论 0原文

当我使用 Merb 的内置控制台时,我会获得类似于标准 bash 提示符的选项卡自动完成功能。我发现这很有用,并希望在非 merb IRB 会话中启用它。如何在 IRB 中获得自动完成功能?

When I use Merb's built in console, I get tab auto-completion similar to a standard bash prompt. I find this useful and would like to enable it in non-merb IRB sessions. How do I get auto-completion in IRB?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

溇涏 2024-08-10 11:15:54

只需将 require 'irb/completion' 放入您的 irbrc 中即可。

如果这不起作用,请尝试债券,http://tagaholic.me/bond/

   require 'bond'; require 'bond/completion'

债券不仅可以提高irb 的完成,http://tagaholic.me/2009/ 07/22/better-irb-completion-with-bond.html,而且还提供了一个简单的 dsl 来进行自定义自动补全。

Just drop require 'irb/completion' in your irbrc.

If that doesn't work try bond, http://tagaholic.me/bond/:

   require 'bond'; require 'bond/completion'

Bond not only improves irb's completion, http://tagaholic.me/2009/07/22/better-irb-completion-with-bond.html, but also offers an easy dsl for making custom autocompletions.

梦断已成空 2024-08-10 11:15:54

这只是重复上面 Cody Caughlan 评论中的信息,以便更容易找到:

require 'irb/completion' 或将以下内容添加到 ~/.irbrc

IRB.conf[:AUTO_INDENT] = true
IRB.conf[:USE_READLINE] = true
IRB.conf[:LOAD_MODULES] = [] unless IRB.conf.key?(:LOAD_MODULES)
unless IRB.conf[:LOAD_MODULES].include?('irb/completion')
  IRB.conf[:LOAD_MODULES] << 'irb/completion'
end 

This is just repeating the information on Cody Caughlan's comment above so it is easier to find:

either require 'irb/completion' or add the following to ~/.irbrc

IRB.conf[:AUTO_INDENT] = true
IRB.conf[:USE_READLINE] = true
IRB.conf[:LOAD_MODULES] = [] unless IRB.conf.key?(:LOAD_MODULES)
unless IRB.conf[:LOAD_MODULES].include?('irb/completion')
  IRB.conf[:LOAD_MODULES] << 'irb/completion'
end 
拥抱影子 2024-08-10 11:15:54

这就是我在 Mac OS 10.11.5 上的工作。使用rvm。执行以下操作:

  1. sudo gem install bond
  2. 在您的主目录中创建文件.irbrcvi ~/.irbrc
  3. .irbrc 文件中添加以下行
    <代码>
    需要“债券”
    债券启动

  4. 保存并关闭文件

  5. 打开irb并使用tab键自动完成

This is what worked for me on Mac OS 10.11.5. using rvm. Do the following :

  1. sudo gem install bond
  2. Create the file .irbrc in your home directory. vi ~/.irbrc
  3. Add the following lines in the .irbrc file

    require 'bond'
    Bond.start

  4. Save and close the file

  5. Open irb and use tab key to autocomplete
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文