module IRB::InputCompletor
Constants
- CompletionProc
Public Class Methods
retrieve_completion_data(input, bind: IRB.conf[:MAIN_CONTEXT].workspace.binding, doc_namespace: false)
click to toggle source
# File irb/completion.rb, line 468 def retrieve_completion_data(input, bind: IRB.conf[:MAIN_CONTEXT].workspace.binding, doc_namespace: false) regexp_completor.retrieve_completion_data(input, bind: bind, doc_namespace: doc_namespace) end
Private Class Methods
regexp_completor()
click to toggle source
# File irb/completion.rb, line 464 def regexp_completor @regexp_completor ||= RegexpCompletor.new end