plugins.diffview.settings.keymaps.option_panel
List of keybindings. Mappings in options panel
Type: list of (submodule)
Default:
[ ]
Example:
[
{
action = lib.nixvim.mkRaw "require('diffview.actions').select_next_entry";
description = "Open the diff for the next file";
key = "<tab>";
mode = "n";
}
]
Declared by:
plugins.diffview.settings.keymaps.option_panel.*.action
Action for keybinding
Type: string or raw lua code
Example:
lib.nixvim.mkRaw "require('diffview.actions').select_next_entry"
Declared by:
plugins.diffview.settings.keymaps.option_panel.*.description
Description for keybinding
Type: null or string or raw lua code
Default:
null
Plugin default: null
Declared by:
plugins.diffview.settings.keymaps.option_panel.*.key
Key to bind keybinding to
Type: string
Example:
"<tab>"
Declared by:
plugins.diffview.settings.keymaps.option_panel.*.mode
Mode to bind keybinding to
Type: string
Example:
"n"
Declared by: