Class: Reline::Core

Inherits:
Object
  • Object
show all
Defined in:
lib/reline.rb

Defined Under Namespace

Classes: DialogProc

Constant Summary collapse

ATTR_READER_NAMES =
%i(
  completion_append_character
  basic_word_break_characters
  completer_word_break_characters
  basic_quote_characters
  completer_quote_characters
  filename_quote_characters
  special_prefixes
  completion_proc
  output_modifier_proc
  prompt_proc
  auto_indent_proc
  pre_input_hook
  dig_perfect_match_proc
).each(&method(:attr_reader))

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ Core

Returns a new instance of Core.

Yields:

  • (_self)

Yield Parameters:

  • _self (Reline::Core)

    the object that the method was called on



61
62
63
64
65
66
67
# File 'lib/reline.rb', line 61

def initialize
  self.output = STDOUT
  @dialog_proc_list = {}
  yield self
  @completion_quote_character = nil
  @bracketed_paste_finished = false
end

Instance Attribute Details

#configObject

Returns the value of attribute config.



55
56
57
# File 'lib/reline.rb', line 55

def config
  @config
end

#key_strokeObject

Returns the value of attribute key_stroke.



56
57
58
# File 'lib/reline.rb', line 56

def key_stroke
  @key_stroke
end

#last_incremental_searchObject

Returns the value of attribute last_incremental_search.



58
59
60
# File 'lib/reline.rb', line 58

def last_incremental_search
  @last_incremental_search
end

#line_editorObject

Returns the value of attribute line_editor.



57
58
59
# File 'lib/reline.rb', line 57

def line_editor
  @line_editor
end

#outputObject

Returns the value of attribute output.



59
60
61
# File 'lib/reline.rb', line 59

def output
  @output
end

Instance Method Details

#add_dialog_proc(name_sym, p, context = nil) ⇒ Object

Raises:

  • (ArgumentError)


159
160
161
162
163
# File 'lib/reline.rb', line 159

def add_dialog_proc(name_sym, p, context = nil)
  raise ArgumentError unless p.respond_to?(:call) or p.nil?
  raise ArgumentError unless name_sym.instance_of?(Symbol)
  @dialog_proc_list[name_sym] = DialogProc.new(p, context)
end

#ambiguous_widthObject



463
464
465
466
# File 'lib/reline.rb', line 463

def ambiguous_width
  may_req_ambiguous_char_width unless defined? @ambiguous_width
  @ambiguous_width
end

#auto_indent_proc=(p) ⇒ Object

Raises:

  • (ArgumentError)


144
145
146
147
# File 'lib/reline.rb', line 144

def auto_indent_proc=(p)
  raise ArgumentError unless p.respond_to?(:call) or p.nil?
  @auto_indent_proc = p
end

#autocompletionObject



126
127
128
# File 'lib/reline.rb', line 126

def autocompletion
  @config.autocompletion
end

#autocompletion=(val) ⇒ Object



130
131
132
# File 'lib/reline.rb', line 130

def autocompletion=(val)
  @config.autocompletion = val
end

#basic_quote_characters=(v) ⇒ Object



93
94
95
# File 'lib/reline.rb', line 93

def basic_quote_characters=(v)
  @basic_quote_characters = v.encode(Reline::IOGate.encoding)
end

#basic_word_break_characters=(v) ⇒ Object



85
86
87
# File 'lib/reline.rb', line 85

def basic_word_break_characters=(v)
  @basic_word_break_characters = v.encode(Reline::IOGate.encoding)
end

#completer_quote_characters=(v) ⇒ Object



97
98
99
# File 'lib/reline.rb', line 97

def completer_quote_characters=(v)
  @completer_quote_characters = v.encode(Reline::IOGate.encoding)
end

#completer_word_break_characters=(v) ⇒ Object



89
90
91
# File 'lib/reline.rb', line 89

def completer_word_break_characters=(v)
  @completer_word_break_characters = v.encode(Reline::IOGate.encoding)
end

#completion_append_character=(val) ⇒ Object



73
74
75
76
77
78
79
80
81
82
83
# File 'lib/reline.rb', line 73

def completion_append_character=(val)
  if val.nil?
    @completion_append_character = nil
  elsif val.size == 1
    @completion_append_character = val.encode(Reline::IOGate.encoding)
  elsif val.size > 1
    @completion_append_character = val[0].encode(Reline::IOGate.encoding)
  else
    @completion_append_character = nil
  end
end

#completion_case_foldObject



113
114
115
# File 'lib/reline.rb', line 113

def completion_case_fold
  @config.completion_ignore_case
end

#completion_case_fold=(v) ⇒ Object



109
110
111
# File 'lib/reline.rb', line 109

def completion_case_fold=(v)
  @config.completion_ignore_case = v
end

#completion_proc=(p) ⇒ Object

Raises:

  • (ArgumentError)


121
122
123
124
# File 'lib/reline.rb', line 121

def completion_proc=(p)
  raise ArgumentError unless p.respond_to?(:call) or p.nil?
  @completion_proc = p
end

#completion_quote_characterObject



117
118
119
# File 'lib/reline.rb', line 117

def completion_quote_character
  @completion_quote_character
end

#dialog_proc(name_sym) ⇒ Object



165
166
167
# File 'lib/reline.rb', line 165

def dialog_proc(name_sym)
  @dialog_proc_list[name_sym]
end

#dig_perfect_match_proc=(p) ⇒ Object

Raises:

  • (ArgumentError)


153
154
155
156
# File 'lib/reline.rb', line 153

def dig_perfect_match_proc=(p)
  raise ArgumentError unless p.respond_to?(:call) or p.nil?
  @dig_perfect_match_proc = p
end

#emacs_editing_modeObject



193
194
195
196
# File 'lib/reline.rb', line 193

def emacs_editing_mode
  config.editing_mode = :emacs
  nil
end

#emacs_editing_mode?Boolean

Returns:

  • (Boolean)


202
203
204
# File 'lib/reline.rb', line 202

def emacs_editing_mode?
  config.editing_mode_is?(:emacs)
end

#encodingObject



69
70
71
# File 'lib/reline.rb', line 69

def encoding
  Reline::IOGate.encoding
end

#filename_quote_characters=(v) ⇒ Object



101
102
103
# File 'lib/reline.rb', line 101

def filename_quote_characters=(v)
  @filename_quote_characters = v.encode(Reline::IOGate.encoding)
end

#get_screen_sizeObject



206
207
208
# File 'lib/reline.rb', line 206

def get_screen_size
  Reline::IOGate.get_screen_size
end

#input=(val) ⇒ Object

Raises:

  • (TypeError)


169
170
171
172
173
174
175
176
177
178
# File 'lib/reline.rb', line 169

def input=(val)
  raise TypeError unless val.respond_to?(:getc) or val.nil?
  if val.respond_to?(:getc)
    if defined?(Reline::ANSI) and Reline::IOGate == Reline::ANSI
      Reline::ANSI.input = val
    elsif Reline::IOGate == Reline::GeneralIO
      Reline::GeneralIO.input = val
    end
  end
end

#output_modifier_proc=(p) ⇒ Object

Raises:

  • (ArgumentError)


134
135
136
137
# File 'lib/reline.rb', line 134

def output_modifier_proc=(p)
  raise ArgumentError unless p.respond_to?(:call) or p.nil?
  @output_modifier_proc = p
end

#pre_input_hook=(p) ⇒ Object



149
150
151
# File 'lib/reline.rb', line 149

def pre_input_hook=(p)
  @pre_input_hook = p
end

#prompt_proc=(p) ⇒ Object

Raises:

  • (ArgumentError)


139
140
141
142
# File 'lib/reline.rb', line 139

def prompt_proc=(p)
  raise ArgumentError unless p.respond_to?(:call) or p.nil?
  @prompt_proc = p
end

#readline(prompt = '', add_hist = false) ⇒ Object



266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/reline.rb', line 266

def readline(prompt = '', add_hist = false)
  inner_readline(prompt, add_hist, false)

  line = line_editor.line.dup
  line.taint if RUBY_VERSION < '2.7'
  if add_hist and line and line.chomp("\n").size > 0
    Reline::HISTORY << line.chomp("\n")
  end

  line_editor.reset_line if line_editor.line.nil?
  line
end

#readmultiline(prompt = '', add_hist = false, &confirm_multiline_termination) ⇒ Object



250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/reline.rb', line 250

def readmultiline(prompt = '', add_hist = false, &confirm_multiline_termination)
  unless confirm_multiline_termination
    raise ArgumentError.new('#readmultiline needs block to confirm multiline termination')
  end
  inner_readline(prompt, add_hist, true, &confirm_multiline_termination)

  whole_buffer = line_editor.whole_buffer.dup
  whole_buffer.taint if RUBY_VERSION < '2.7'
  if add_hist and whole_buffer and whole_buffer.chomp("\n").size > 0
    Reline::HISTORY << whole_buffer
  end

  line_editor.reset_line if line_editor.whole_buffer.nil?
  whole_buffer
end

#special_prefixes=(v) ⇒ Object



105
106
107
# File 'lib/reline.rb', line 105

def special_prefixes=(v)
  @special_prefixes = v.encode(Reline::IOGate.encoding)
end

#vi_editing_modeObject



188
189
190
191
# File 'lib/reline.rb', line 188

def vi_editing_mode
  config.editing_mode = :vi_insert
  nil
end

#vi_editing_mode?Boolean

Returns:

  • (Boolean)


198
199
200
# File 'lib/reline.rb', line 198

def vi_editing_mode?
  config.editing_mode_is?(:vi_insert, :vi_command)
end