I have several custom keyboard shortcuts for various tasks I do in Microsoft Word. Sometimes I forget all of them and need to remember all the things I’ve overwritten. Fortunately, I came across some VBA that can print these custom keyboard shortcuts out.

Found this script at the Microsoft Docs here. Paste this in a module in the VBA editor.

Sub ListCustomKeyBindings()

    CustomizationContext = NormalTemplate

    For Each aKey In KeyBindings
     Selection.InsertAfter aKey.Command & vbTab & aKey.KeyString & vbCr
     Selection.Collapse Direction:=wdCollapseEnd
    Next aKey

End Sub

When you run this, you should see the command or macro, along with the keybinding.