pull down to refresh

NFW, That's great! This will enable a creativity exploit on SN.
Still, would be nice to have:
  • the editor menu following the user when scrolling
  • keyboard shortcut for switching between editor and preview
  • documented keyboard short codes (or leave it as easter eggs)
33 sats \ 0 replies \ @sox OP 11h
Well, thank you!
  • the editor menu following the user when scrolling
    • in progress
  • keyboard shortcut for switching between editor and preview
export const EDITOR_SHORTCUTS = [
  {
    action: 'toggleMode',
    combo: 'mod+shift+m',
    handler: ({ editor }) => {
      editor.dispatchCommand(SN_TOGGLE_MODE_COMMAND)
    }
  },
  • documented keyboard short codes
    • there's gonna be an overwhelming modal for this, because every action has a shortcut, but I didn't do it yet because the idea already overwhelmed me lol
reply