pull down to refresh
100 sats \ 1 reply \ @supratic 10 Oct \ parent \ on: Yes, we're working on a new editor. meta
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)
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