module Byebug
def self.settings
:force_stepping - stepping command always move to the new line
source code
:autoreload - makes 'list' command always display up-to-date
stack
:frame_class_names - displays method's class name when showing frame
:frame_fullpath - displays full paths when showing frame stack
an exception
:stack_trace_on_error - shows full stack trace if eval command results in
:autoirb - automatically calls 'irb' command on breakpoint
recognized as a byebug command
:autoeval - evaluates input in the current binding if it's not
: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