Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set scroll line count

In the Visual Studio Code, how do I adjust the scrollable lines when scrolling the mouse?

It scrolls 8 lines, but I want it to scroll 3 lines only.

like image 743
June Lee Avatar asked Aug 10 '17 13:08

June Lee


People also ask

How do I change the scrolling value in Excel?

If you open the Control Panel in Windows and search for Scroll, you'll find a setting called “Change How Far You Scroll With the Mouse Wheel.” This setting has options to scroll “Multiple Lines At A Time” or “One Screen At A Time.” If you choose the multiple lines option, there's a slider where you can choose from 1 to ...

How many lines scroll each time?

By default, when you roll the mouse wheel, Windows scrolls down three lines of text. You can change how many lines of text are scrolled past with the slider on the page.


1 Answers

You should be able to adjust that using this setting:

// A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll 
   events
"editor.mouseWheelScrollSensitivity": 1

Being a multiplier for example setting it to 2, you will double the scroll. But I don't know to be honest if you can use decimals. So for example putting 0.5 you should be able to have half of the scroll you have by default.

I hope it helps

like image 150
quirimmo Avatar answered Sep 20 '22 01:09

quirimmo