plugins.dap-rr.settings

Options provided to the require('dap-rr').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  mappings = {
    continue = "<f4>";
    reverse_continue = "<f4>";
    reverse_step_into = "<s-f11>";
    reverse_step_out = "<s-f8>";
    reverse_step_over = "<s-f10>";
    step_into = "<f11>";
    step_out = "<f8>";
    step_over = "<f10>";
  };
}

Declared by:

plugins.dap-rr.settings.mappings

Keyboard mappings for nvim-dap-rr.

Type: null or (attribute set of (string or raw lua code)) or raw lua code

Default: null

Plugin default:

{
  continue = "<F7>";
  reverse_continue = "<F19>";
  reverse_step_into = "<F22>";
  reverse_step_into_i = "<F46>";
  reverse_step_out = "<F21>";
  reverse_step_out_i = "<F45>";
  reverse_step_over = "<F20>";
  reverse_step_over_i = "<F44>";
  step_into = "<F10>";
  step_into_i = "<F34>";
  step_out = "<F9>";
  step_out_i = "<F33>";
  step_over = "<F8>";
  step_over_i = "<F32>";
}

Declared by: