lib/byebug/settings/fullpath.rb



# frozen_string_literal: true

require_relative "../setting"

module Byebug
  #
  # Setting to display full paths in backtraces.
  #
  class FullpathSetting < Setting
    DEFAULT = true

    def banner
      "Display full file names in backtraces"
    end
  end
end