There was a “MoveByParagraph” package for ST2, but it doesn’t work in ST4 or it’s not suitable for my purposes. I am attempting to customize my key bindings to move the insertion point to the end (or the beginning) of the current paragraph. Currently, I have these entries:
{ “keys”: [“ctrl+up”], “command”: “move_to”, “args”: { “to”: “hardbol”} },
{ “keys”: [“ctrl+down”], “command”: “move_to”, “args”: { “to”: “hardeol”} },
They work but I would like to be able to press my keys again and so go further to the next hardeol or hardbol. Now, I have to manually move the cursor to the following or the previous paragraph to be able to go to the next hardeol (or hardbol). Any suggestions? Thanking you in advance.