I’m trying out Atom to see if I want to move from Sublime or not, and it looks good sofar, but I’m running into a problem with setting up my key bindings.
In Sublime I can hold ctrl and press down, for example, and it will move my cursor(s) down by 10 lines instead of the normal 1 that is set for just pressing down on it’s own.
This is of course a custom key binding as I find it useful to quickl;y scroll up and down files.
In Atom I can set a key binding as follows:
‘ctrl-down’: ‘core:move-down’
But this will only move the cursor by 1 line.
Is there a way to pass this command a value, like 10, to tell it to move 10 lines instead of 1?