Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable smooth scrolling?

In Sublime Text 3 (build 3126), is it possible to disable the smooth scrolling effect? I'd rather have it scroll like say Visual Studio where it didn't animate the scrolling. Here is a GIF recording of what I mean:

enter image description here

I'm willing to use a plugin, if there is no normal setting.

like image 224
carefulnow1 Avatar asked May 03 '17 18:05

carefulnow1


People also ask

Should I enable smooth scrolling?

Enabling a smooth scroll allows you to scroll like that with your regular wheel scroll. Smooth scrolling is also useful with keyboard shortcuts. When this feature is enabled, pressing the Page Down button won't just jump directly down one page.

How do I disable scrolling in chrome?

go to chrome://flags/#scrollable. to enable scrolling, set to defaults: "Tab Scrolling" and "Tab Scrolling Buttons" to disable scrolling, enable: "Tab Scrolling" and "Tab Scrolling Buttons"

Can you change smooth scrolling?

Type chrome://flags and hit Enter. Search for 'smooth'. Select Enabled against Smooth scrolling and restart the browser. You can also use the Chromium Wheel Smooth Scroller add-on to achieve this.


1 Answers

Yes, this is possible without a plugin - just set scroll_speed to 0 in your user preferences:

// Set to 0 to disable smooth scrolling. Set to a value between 0 and 1 to
// scroll slower, or set to larger than 1 to scroll faster
"scroll_speed": 0.0,
like image 75
Keith Hall Avatar answered Sep 26 '22 16:09

Keith Hall