components/help: document that / allows to start writing a command

This commit is contained in:
Simon Ser 2021-06-02 22:53:28 +02:00
parent 91208a6d47
commit 5004f6c89c

View file

@ -26,7 +26,14 @@ function KeyBindingsHelp() {
`;
});
return html`<dl>${l}</dl>`;
return html`
<dl>
<dt><kbd>/</kbd></dt>
<dd>Start writing a command</dd>
${l}
</dl>
`;
}
function CommandsHelp() {