I would like to have the possibility to see more lines beneath the cursor when the cursor is near the bottom of the text edit pane.
@b4n mentioned in the last paragraph of [his comment](https://github.com/geany/geany/issues/1116#issuecomment-230763662) to issue #1116
However, we could indeed set [the Y caret policy](http://www.scintilla.org/ScintillaDoc.html#SCI_SETYCARETPOLICY) with an offset so the last line is never on the bottom, something like `SCI_SETYCARETPOLICY(CARET_SLOP | CARET_STRICT | CARET_EVEN, 1).` I guess that'd be reasonable, but may require a setting.
So my feature request is: Please implement such a setting, but please with more than just one single line - it would be nice to be able to freely set the number of lines.
--- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/1152