deivid-rodriguez/byebug

View on GitHub
lib/byebug/settings/autosave.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative "../setting"

module Byebug
  #
  # Setting for automatically saving previously entered commands to history
  # when exiting the debugger.
  #
  class AutosaveSetting < Setting
    DEFAULT = true

    def banner
      "Automatically save command history record on exit"
    end
  end
end