module Byebug
def self.settings
:force_stepping - stepping command always move to the new line
source code
:reload_source_on_change - makes 'list' command always display up-to-date
stack
:frame_class_names - displays method's class name when showing frame
:frame_full_path - displays full paths when showing frame stack
in an exception
:stack_trace_on_error - shows full stack trace if eval command results
:autoirb - automatically calls 'irb' command on breakpoint
not recognized as a byebug command
:autoeval - evaluates input in the current binding if it's
:autolist - automatically calls 'list' command on breakpoint
byebug settings. These settings are available:
Use Byebug.settings[] and Byebug.settings[]= methods to query and set
Returns ths settings object.
#
def self.settings Command.settings end