plugins.obsidian.extraOptions.workspaces.*.overrides.mappings

Configure key mappings.

Type: null or (attribute set of (submodule))

Default: null

Plugin default:

{
  gf = {
    action = "require('obsidian').util.gf_passthrough";
    opts = {
      noremap = false;
      expr = true;
      buffer = true;
    };
  };

  "<leader>ch" = {
    action = "require('obsidian').util.toggle_checkbox";
    opts.buffer = true;
  };
}

Declared by:

plugins.obsidian.extraOptions.workspaces.overrides.mappings.<name>.action

The lua code for this keymap action.

Type: lua code string

Declared by: