37 lines
1.3 KiB
YAML
37 lines
1.3 KiB
YAML
# Configuration file for the delve debugger.
|
|
|
|
# This is the default configuration file. Available options are provided, but disabled.
|
|
# Delete the leading hash mark to enable an item.
|
|
|
|
# Uncomment the following line and set your preferred ANSI foreground color
|
|
# for source line numbers in the (list) command (if unset, default is 34,
|
|
# dark blue) See https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit
|
|
# source-list-line-color: 34
|
|
|
|
# Provided aliases will be added to the default aliases for a given command.
|
|
aliases:
|
|
# command: ["alias1", "alias2"]
|
|
|
|
# Define sources path substitution rules. Can be used to rewrite a source path stored
|
|
# in program's debug information, if the sources were moved to a different place
|
|
# between compilation and debugging.
|
|
# Note that substitution rules will not be used for paths passed to "break" and "trace"
|
|
# commands.
|
|
substitute-path:
|
|
# - {from: path, to: path}
|
|
|
|
# Maximum number of elements loaded from an array.
|
|
# max-array-values: 64
|
|
|
|
# Maximum loaded string length.
|
|
# max-string-len: 64
|
|
|
|
# Output evaluation.
|
|
# max-variable-recurse: 1
|
|
|
|
# Uncomment the following line to make the whatis command also print the DWARF location expression of its argument.
|
|
# show-location-expr: true
|
|
|
|
# List of directories to use when searching for separate debug info files.
|
|
debug-info-directories: ["/usr/lib/debug/.build-id"]
|