Go To Jots

name

Go To Jots

description

Type "{j}" to navigate to Jots.

instructions



Type "{j}" (in a note) or "!j" (in a task) to instantly navigate to Jots.

Unlike opening "Quick Open" menu into "Jots," this plugin navigates you to "All notes," enabling you to also see recently created notes other than daily jots.

Known issue: Typing "{j}" in the Tasks view leaves the string undeleted. This might be a bug of Amplenote. Use "!j" instead.


{
insertText: {
check() {
return "j";
},
run(app) {
app.navigate("https://www.amplenote.com/notes/jots");
return "";
}
},
 
taskOption: {
check() {
return "j";
},
run(app) {
app.navigate("https://www.amplenote.com/notes/jots");
}
}
}