class Byebug::AutolistSetting


Setting for automatically listing source code on every stop.

def banner

def banner
  'Invoke list command on every stop'
end

def initialize

def initialize
  ListCommand.always_run = DEFAULT
end

def value

def value
  ListCommand.always_run == 1
end

def value=(v)

def value=(v)
  ListCommand.always_run = v ? 1 : 0
end