class MiniReadline::NoHistory

Support for the edit without history.

Public Instance Methods

append_history(_str) click to toggle source

Append a string to the history buffer if enabled. NOP

# File lib/mini_readline/read_line/no_history.rb, line 28
def append_history(_str)
end
get_next_history() click to toggle source

Get the next history string. NOP

# File lib/mini_readline/read_line/no_history.rb, line 23
def get_next_history
  false
end
get_previous_history() click to toggle source

Get the previous history string. NOP

# File lib/mini_readline/read_line/no_history.rb, line 18
def get_previous_history
  false
end
goto_end_of_history() click to toggle source

Go to the end of the history array. NOP

# File lib/mini_readline/read_line/no_history.rb, line 14
def goto_end_of_history
end
history() click to toggle source

Get the history buffer associated with this instance. Empty

# File lib/mini_readline/read_line/no_history.rb, line 32
def history
  []
end
initialize_parms(_options) click to toggle source

Get the history object ready for the next read line operation. NOP

# File lib/mini_readline/read_line/no_history.rb, line 10
def initialize_parms(_options)
end