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=(val)

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