plugins.telescope.keymaps
Keymaps for telescope.
Type: attribute set of (string or (submodule))
Default:
{ }
Example:
{
"<C-p>" = {
action = "git_files";
options = {
desc = "Telescope Git Files";
};
};
"<leader>fg" = "live_grep";
}
Declared by:
plugins.telescope.keymaps.<name>.action
The telescope action to run.
Type: string
plugins.telescope.keymaps.<name>.mode
One or several modes.
Use the short-names ("n"
, "v"
, …).
See :h map-modes
to learn more.
Type: one of “c”, “i”, “!”, “l”, “n”, “”, “o”, “s”, “t”, “v”, “x” or list of (one of “c”, “i”, “!”, “l”, “n”, “”, “o”, “s”, “t”, “v”, “x”)
Default:
"n"
Example:
[
"n"
"v"
]