Add custom keyboard shortcuts to your Office Add-ins

Keyboard shortcuts, also known as key combinations, enable your add-in's users to work more efficiently. Keyboard shortcuts also improve the add-in's accessibility for users with disabilities by providing an alternative to the mouse.

Important

Keyboard shortcuts are currently only supported on Excel and only on these platforms and builds:

  • Excel on Windows: Version 2102 (Build 13801.20632) and later
  • Excel on Mac: 16.48 and later
  • Excel on the web

Note

Keyboard shortcuts work only on platforms that support the following requirement sets. For more about requirement sets and how to work with them, see Specify Office applications and API requirements.

Note

To start with a working version of an add-in with keyboard shortcuts already enabled, clone and run the sample Excel Keyboard Shortcuts. When you're ready to add keyboard shortcuts to your own add-in, continue with this article.

There are three steps to add keyboard shortcuts to an add-in.

  1. Configure the add-in's manifest.
  2. Create or edit the shortcuts JSON file to define actions and their keyboard shortcuts.
  3. Add one or more runtime calls of the Office.actions.associate API to map a function to each action.

Configure the manifest

There are two small changes to make to the manifest. One is to enable the add-in to use a shared runtime and the other is to point to a JSON-formatted file where you defined the keyboard shortcuts.

Configure the add-in to use a shared runtime

Adding custom keyboard shortcuts requires your add-in to use the shared runtime. For more information, see Configure an add-in to use a shared runtime.

Immediately below (not inside) the <VersionOverrides> element in the manifest, add an ExtendedOverrides element. Set the Url attribute to the full URL of a JSON file in your project that you'll create in a later step.

    ...
    </VersionOverrides>  
    <ExtendedOverrides Url="https://contoso.com/addin/shortcuts.json"></ExtendedOverrides>
</OfficeApp>

Create or edit the shortcuts JSON file

Create a JSON file in your project. Be sure the path of the file matches the location you specified for the Url attribute of the ExtendedOverrides element. This file will describe your keyboard shortcuts, and the actions that they will invoke.

  1. Inside the JSON file, there are two arrays. The actions array will contain objects that define the actions to be invoked and the shortcuts array will contain objects that map key combinations onto actions. Here is an example.

    {
        "actions": [
            {
                "id": "SHOWTASKPANE",
                "type": "ExecuteFunction",
                "name": "Show task pane for add-in"
            },
            {
                "id": "HIDETASKPANE",
                "type": "ExecuteFunction",
                "name": "Hide task pane for add-in"
            }
        ],
        "shortcuts": [
            {
                "action": "SHOWTASKPANE",
                "key": {
                    "default": "Ctrl+Alt+Up"
                }
            },
            {
                "action": "HIDETASKPANE",
                "key": {
                    "default": "Ctrl+Alt+Down"
                }
            }
        ]
    }
    

    For more information about the JSON objects, see Construct the action objects and Construct the shortcut objects. The complete schema for the shortcuts JSON is at extended-manifest.schema.json.

    Note

    You can use "CONTROL" in place of "Ctrl" throughout this article.

    In a later step, the actions will themselves be mapped to functions that you write. In this example, you'll later map SHOWTASKPANE to a function that calls the Office.addin.showAsTaskpane method and HIDETASKPANE to a function that calls the Office.addin.hide method.

Create a mapping of actions to their functions

  1. In your project, open the JavaScript file loaded by your HTML page in the <FunctionFile> element.

  2. In the JavaScript file, use the Office.actions.associate API to map each action that you specified in the JSON file to a JavaScript function. Add the following JavaScript to the file. Note the following about the code.

    • The first parameter is one of the actions from the JSON file.
    • The second parameter is the function that runs when a user presses the key combination that is mapped to the action in the JSON file.
    Office.actions.associate('-- action ID goes here--', function () {
    
    });
    
  3. To continue the example, use 'SHOWTASKPANE' as the first parameter.

  4. For the body of the function, use the Office.addin.showAsTaskpane method to open the add-in's task pane. When you are done, the code should look like the following:

    Office.actions.associate('SHOWTASKPANE', function () {
        return Office.addin.showAsTaskpane()
            .then(function () {
                return;
            })
            .catch(function (error) {
                return error.code;
            });
    });
    
  5. Add a second call of Office.actions.associate function to map the HIDETASKPANE action to a function that calls Office.addin.hide. The following is an example.

    Office.actions.associate('HIDETASKPANE', function () {
        return Office.addin.hide()
            .then(function () {
                return;
            })
            .catch(function (error) {
                return error.code;
            });
    });
    

Following the previous steps lets your add-in toggle the visibility of the task pane by pressing Ctrl+Alt+Up and Ctrl+Alt+Down. The same behavior is shown in the Excel keyboard shortcuts sample in the Office Add-in Samples repo in GitHub.

Details and restrictions

Construct the action objects

Use the following guidelines when specifying the objects in the actions array of the shortcuts.json.

  • The property names id and name are mandatory.
  • The id property is used to uniquely identify the action to invoke using a keyboard shortcut.
  • The name property must be a user friendly string describing the action. It must be a combination of the characters A - Z, a - z, 0 - 9, and the punctuation marks "-", "_", and "+".
  • The type property is optional. Currently only ExecuteFunction type is supported.

The following is an example.

    "actions": [
        {
            "id": "SHOWTASKPANE",
            "type": "ExecuteFunction",
            "name": "Show task pane for add-in"
        },
        {
            "id": "HIDETASKPANE",
            "type": "ExecuteFunction",
            "name": "Hide task pane for add-in"
        }
    ]

The complete schema for the shortcuts JSON is at extended-manifest.schema.json.

Construct the shortcut objects

Use the following guidelines when specifying the objects in the shortcuts array of the shortcuts.json.

  • The property names action, key, and default are required.
  • The value of the action property is a string and must match one of the id properties in the action object.
  • The default property can be any combination of the characters A - Z, a -z, 0 - 9, and the punctuation marks "-", "_", and "+". (By convention, lowercase letters aren't used in these properties.)
  • The default property must contain the name of at least one modifier key (Alt, Ctrl, Shift) and only one other key.
  • Shift cannot be used as the only modifier key. Combine Shift with either Alt or Ctrl.
  • For Macs, we also support the Command modifier key.
  • For Macs, Alt is mapped to the Option key. For Windows, Command is mapped to the Ctrl key.
  • When two characters are linked to the same physical key in a standard keyboard, then they're synonyms in the default property; for example, Alt+a and Alt+A are the same shortcut, so are Ctrl+- and Ctrl+_ because "-" and "_" are the same physical key.
  • The "+" character indicates that the keys on either side of it are pressed simultaneously.

The following is an example.

    "shortcuts": [
        {
            "action": "SHOWTASKPANE",
            "key": {
                "default": "Ctrl+Alt+Up"
            }
        },
        {
            "action": "HIDETASKPANE",
            "key": {
                "default": "Ctrl+Alt+Down"
            }
        }
    ]

The complete schema for the shortcuts JSON is at extended-manifest.schema.json.

Note

KeyTips, also known as sequential key shortcuts, such as the Excel shortcut to choose a fill color Alt+H, H, aren't supported in Office Add-ins.

Avoid key combinations in use by other add-ins

There are many keyboard shortcuts that are already in use by Office. Avoid registering keyboard shortcuts for your add-in that are already in use. However, there may be some instances where it's necessary to override existing keyboard shortcuts or handle conflicts between multiple add-ins that have registered the same keyboard shortcut.

In the case of a conflict, the user will see a dialog box the first time they attempt to use a conflicting keyboard shortcut. Note that the text for the add-in option that's displayed in this dialog comes from the name property in the action object in shortcuts.json file.

A conflict modal with two different actions for a single shortcut.

The user can select which action the keyboard shortcut will take. After making the selection, the preference is saved for future uses of the same shortcut. The shortcut preferences are saved per user, per platform. If the user wishes to change their preferences, they can invoke the Reset Office Add-ins shortcut preferences command from the Tell me search box. Invoking the command clears all of the user's add-in shortcut preferences and the user will again be prompted with the conflict dialog box the next time they attempt to use a conflicting shortcut.

The Tell me search box in Excel showing the reset Office Add-in shortcut preferences action.

For the best user experience, we recommend that you minimize conflicts with Excel with these good practices.

  • Use only keyboard shortcuts with the following pattern: Ctrl+Shift+Alt+x, where x is some other key.
  • If you need more keyboard shortcuts, check the list of Excel keyboard shortcuts, and avoid using any of them in your add-in.
  • When the keyboard focus is inside the add-in UI, Ctrl+Spacebar and Ctrl+Shift+F10 won't work as these are essential accessibility shortcuts.
  • On a Windows or Mac computer, if the "Reset Office Add-ins shortcut preferences" command isn't available on the search menu, the user can manually add the command to the ribbon by customizing the ribbon through the context menu.

Customize the keyboard shortcuts per platform

It's possible to customize shortcuts to be platform-specific. The following is an example of the shortcuts object that customizes the shortcuts for each of the following platforms: windows, mac, web. Note that you must still have a default shortcut key for each shortcut.

In the following example, the default key is the fallback key for any platform that isn't specified. The only platform not specified is Windows, so the default key will only apply to Windows.

    "shortcuts": [
        {
            "action": "SHOWTASKPANE",
            "key": {
                "default": "Ctrl+Alt+Up",
                "mac": "Command+Shift+Up",
                "web": "Ctrl+Alt+1",
            }
        },
        {
            "action": "HIDETASKPANE",
            "key": {
                "default": "Ctrl+Alt+Down",
                "mac": "Command+Shift+Down",
                "web": "Ctrl+Alt+2"
            }
        }
    ]

Localize the keyboard shortcuts JSON

If your add-in supports multiple locales, you'll need to localize the name property of the action objects. Also, if any of the locales that the add-in supports have different alphabets or writing systems, and hence different keyboards, you may need to localize the shortcuts also. For information about how to localize the keyboard shortcuts JSON, see Localize extended overrides.

Browser shortcuts that cannot be overridden

When using custom keyboard shortcuts on the web, some keyboard shortcuts that are used by the browser cannot be overridden by add-ins. This list is a work in progress. If you discover other combinations that cannot be overridden, please let us know by using the feedback tool at the bottom of this page.

  • Ctrl+N
  • Ctrl+Shift+N
  • Ctrl+T
  • Ctrl+Shift+T
  • Ctrl+W
  • Ctrl+PgUp/PgDn

Enable custom keyboard shortcuts for specific users

Your add-in can enable users to reassign the actions of the add-in to alternate keyboard combinations.

Note

The APIs described in this section require the KeyboardShortcuts 1.1 requirement set.

Use the Office.actions.replaceShortcuts method to assign a user's custom keyboard combinations to your add-ins actions. The method takes a parameter of type {[actionId:string]: string|null}, where the actionIds are a subset of the action IDs that must be defined in the add-in's extended manifest JSON. The values are the user's preferred key combinations. The value can also be null, which will remove any customization for that actionId and revert to the default keyboard combination that is defined in the add-in's extended manifest JSON.

If the user is logged into Office, the custom combinations are saved in the user's roaming settings per platform. Customizing shortcuts are currently not supported for anonymous users.

const userCustomShortcuts = {
    SHOWTASKPANE:"CTRL+SHIFT+1", 
    HIDETASKPANE:"CTRL+SHIFT+2"
};
Office.actions.replaceShortcuts(userCustomShortcuts)
    .then(function () {
        console.log("Successfully registered.");
    })
    .catch(function (ex) {
        if (ex.code == "InvalidOperation") {
            console.log("ActionId does not exist or shortcut combination is invalid.");
        }
    });

To find out what shortcuts are already in use for the user, call the Office.actions.getShortcuts method. This method returns an object of type [actionId:string]:string|null}, where the values represent the current keyboard combination the user must use to invoke the specified action. The values can come from three different sources:

  • If there was a conflict with the shortcut and the user has chosen to use a different action (either native or another add-in) for that keyboard combination, the value returned will be null since the shortcut has been overridden and there is no keyboard combination the user can currently use to invoke that add-in action.
  • If the shortcut has been customized using the Office.actions.replaceShortcuts method, the value returned will be the customized keyboard combination.
  • If the shortcut has not been overridden or customized, it will return the value from the add-in's extended manifest JSON.

The following is an example.

Office.actions.getShortcuts()
    .then(function (userShortcuts) {
       for (const action in userShortcuts) {
           let shortcut = userShortcuts[action];
           console.log(action + ": " + shortcut);
       }
    });

As described in Avoid key combinations in use by other add-ins, it's a good practice to avoid conflicts in shortcuts. To discover if one or more key combinations are already in use pass them as an array of strings to the Office.actions.areShortcutsInUse method. The method returns a report containing key combinations that are already in use in the form of an array of objects of type {shortcut: string, inUse: boolean}. The shortcut property is a key combination, such as "CTRL+SHIFT+1". If the combination is already registered to another action, the inUse property is set to true. For example, [{shortcut: "CTRL+SHIFT+1", inUse: true}, {shortcut: "CTRL+SHIFT+2", inUse: false}]. The following code snippet is an example:

const shortcuts = ["CTRL+SHIFT+1", "CTRL+SHIFT+2"];
Office.actions.areShortcutsInUse(shortcuts)
    .then(function (inUseArray) {
        const availableShortcuts = inUseArray.filter(function (shortcut) { return !shortcut.inUse; });
        console.log(availableShortcuts);
        const usedShortcuts = inUseArray.filter(function (shortcut) { return shortcut.inUse; });
        console.log(usedShortcuts);
    });

Next Steps