You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
put the cursor at the first visible line with the mouse
press the up arrow key
let the number of lines visible above the cursor be U
U = max(5, editor.cursorSurroundingLines). Going down, the number of lines below is D= max(1, editor.cursorSurroundingLines).
I expected editor.cursorSurroundingLines=0 to make the U D gaps 0. I don't think the default behavior should change -- I want to be able to set the scrolling to be like vim's default scrolloff=0.
The text was updated successfully, but these errors were encountered:
Does this issue occur when all extensions are disabled?: Yes
Commit: f1e16e1
Date: 2024-07-09T22:08:12.169Z
Electron: 29.4.0
ElectronBuildId: 9728852
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Linux x64 6.5.0-41-generic
Steps to Reproduce:
U = max(5, editor.cursorSurroundingLines). Going down, the number of lines below is D= max(1, editor.cursorSurroundingLines).
I expected editor.cursorSurroundingLines=0 to make the U D gaps 0. I don't think the default behavior should change -- I want to be able to set the scrolling to be like vim's default scrolloff=0.
The text was updated successfully, but these errors were encountered: