There is also a `Create Scratch Note` command, and...
# questions
h
There is also a
Create Scratch Note
command, and the default keybinding is
cmd/ctrl+shift+s
https://wiki.dendron.so/notes/eea2b078-1acc-4071-a14e-18299fc28f47/#create-scratch-note If you want to go further and skip the confirmation, you can add
noConfirm: true
to the keybinding
args
property like so:
Copy code
md
[
  ...
  {
    "key": "{desired keybinding}",
    "command": "dendron.createScratchNote",
    "args": {
      "noConfirm": true
    }
  },
  ...
]