Reputation: 14563
I'm trying to recreate this from sublime text:
{ "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
{ "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -1.0 } },
Upvotes: 2
Views: 1437
Reputation: 6201
Scroll by one line is not currently supported by API, but you can use this plugin which implements it:
https://github.com/callum-ramage/ctrl-dir-scroll
Upvotes: 5