My system of code organization in Mathematica is such that that after a block of code that achieves a specific goal I create a new cell and skip 4 or 5 lines in it, and write new code in the next line.
This is, of course, very messy -- but it would become much easier and more standardized if I could define a shortcut for it.
So is there a way for me to define a shortcut that
Creates a new cell;
Skips 4 lines and leaves the cursor on the fifth one.
Any advice is also appreciated.
SelectionMove[InputNotebook[], After, Cell]; NotebookWrite[InputNotebook[], StringRepeat["\n", 5]]+ https://mathematica.stackexchange.com/a/217028/5478 – Kuba Oct 20 '22 at 06:57