Intellij IDEA, control page up, page scroll down size

I'm not happy with the scroll behavior in intellij for page up, down. This is not true. It always seems to me that I am going out of scope.

Can I adjust the page scroll size up, down? Maybe half a page or the like.

+3


source to share


2 answers


There is no way to control this through settings. What you can do is write a plugin that scrolls in the way you prefer. It's pretty simple: all you have to do is copy the existing PageUpAction / PageDownAction and the methods they call ( EditorActionUtil .moveCaretPageUp / Down) to scroll as much as you want.



+3


source


I have implemented a simplified version of this plugin here .



There is also an installable version of the plugin in the official JetBrains repository .

0


source







All Articles