Sublime Forum

[Solved] Is there any manner to paginate with mouse wheel + any key?

#1

Hello. I’m looking for a plugin/way to make paginations with Ctrl (or Shift or another key) + mouse wheel.
Is there any option to get that?

Thanks.

0 Likes

#2
1 Like

#3

Thanks. It helped me a lot.

This is the configuration, using Alt + Wheel (because Ctrl + Wheel is for change font size as default):

File:
/.config/sublime-text-3/Packages/User/Default (Linux).sublime-mousemap

[
	{
		"button": "scroll_down", 
		"modifiers": ["alt"], 
		"command": "scroll_lines",
		"args": {"amount":-30.0}
	
	}, 
	{ 
		"button": "scroll_up", 
		"modifiers": ["alt"], 
		"command": "scroll_lines",
		"args":{"amount":30.0} 
	}
]
0 Likes

Feature Request: Faster scrolll with alt+mousewheel