Hi all,
I hope this is the right place to put this. And also hope that everybody that is interested will find it.
I just wrote an Autohotkey software script that lets you press ENTER and get a SHIFT+ENTER in the Rich Text editor. And, it only runs/works when Joplin is the active window/app.
It requires Autohotkey version 1.1, NOT 2.0!
Simply install autohotkey 1.1 and then you will be able to double click on the script file that you can place in the directory of your choosing. Autohotkey runs in the Windows System Tray.
Here is the script that you need to create as a plain text file. You can use notepad.
#NoEnv
SendMode Input
SetTitleMatchMode 2
; Replace this with the actual Joplin exe if installed differently
#If WinActive("ahk_exe Joplin.exe")
Enter::
Send +{Enter}
Return
#If
UPDATE
I adapted the macro for version 2.0 of Autohotkey but haven't tested it yet I will do that today just in case anyone is already running version 2 and can't downgrade to version 1.1.