In the documentation you have a name and a description property. In the codepen example I changed the first command item from:
{
name: "Goto Profile",
handler: () => (window.location.hash = "profile"),
shortcut: "ctrl+9",
},
to
{
name: "Goto Profile",
handler: () => (window.location.hash = "profile"),
shortcut: "ctrl+9",
description: "See my profile",
},
Looking at the console output, I can see that the code is processing the updated command definition, but I don't
see the description shown anywhere. It does seem to be used for fuzzy matching though. So maybe that's my
answer for issue #8? Although I would expect a description to be shown to the user and not be used just for search matching.
In the documentation you have a
nameand adescriptionproperty. In the codepen example I changed the first command item from:to
Looking at the console output, I can see that the code is processing the updated command definition, but I don't
see the description shown anywhere. It does seem to be used for fuzzy matching though. So maybe that's my
answer for issue #8? Although I would expect a description to be shown to the user and not be used just for search matching.