Files
silverbullet/Library/Malys/HelpShortcuts.md
2026-02-05 13:44:35 +00:00

725 B

author, description, name, tags, share.uri, share.hash, share.mode
author description name tags share.uri share.hash share.mode
malys Display most commun shortcuts. Library/Malys/HelpShortcuts meta/library https://github.com/malys/silverbullet-libraries/blob/main/src/HelpShortcuts.md c67cc072 pull

Help: Shortcuts

Display helper on demand.

command.define {
  name = "Help: shortcuts",
  key = "Ctrl-h",
  run = function()
    local messages={ "shift-alt-e header picker",  "ctrl-alt-t tag picker","alt-c: copy nearest","shift-ctrl-c:  cursor position","alt-ctrl-n: new child","alt-ctrl-s: new sibling","ctrl-Alt-1: code block","!!last monday: chronos"}
    for i in pairs(messages) do
      editor.flashNotification(messages[i], "info")
    end
  end
}