mirror of
https://github.com/neovim/neovim.git
synced 2026-02-17 09:04:19 +00:00
vim-patch:9.1.0211: page-wise scrolling does not support smooth-scrolling
Problem: Page-wise scrolling with Ctrl-F/Ctrl-B implements
it's own logic to change the topline and cursor.
In doing so, skipcol is not handled properly for
'smoothscroll', and virtual lines.
Solution: Re-use the logic from Ctrl-E/Ctrl-Y while staying
backward compatible as much as possible.
b9f5b95b7b
This commit is contained in:
4
runtime/lua/vim/_meta/options.lua
generated
4
runtime/lua/vim/_meta/options.lua
generated
@@ -6075,8 +6075,8 @@ vim.go.sta = vim.go.smarttab
|
||||
--- highlighted with `hl-NonText`.
|
||||
--- You may also want to add "lastline" to the 'display' option to show as
|
||||
--- much of the last line as possible.
|
||||
--- NOTE: only partly implemented, currently works with CTRL-E, CTRL-Y
|
||||
--- and scrolling with the mouse.
|
||||
--- NOTE: only partly implemented, currently works with CTRL-E, CTRL-Y,
|
||||
--- CTRL-B, CTRL-F and scrolling with the mouse.
|
||||
---
|
||||
--- @type boolean
|
||||
vim.o.smoothscroll = false
|
||||
|
||||
Reference in New Issue
Block a user