Intellij IDEA, control page up, page scroll down size
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 to share
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 to share