How Can I Make a Quick Note in Joplin

  • Question – How can I make a quick note in Joplin
  • Answer just add this to your Autohotkey script and adjust the path for joplin:
;joplin 'new note'
#n::
IfWinExist Joplin
{
  WinActivate, Joplin
}
Else run c:\_office_\joplin\joplinportable.exe
WinWaitActive, Joplin
Send, ^n
return