diff options
author | Luuk van Baal <luukvbaal@gmail.com> | 2024-03-26 19:06:39 +0100 |
---|---|---|
committer | Luuk van Baal <luukvbaal@gmail.com> | 2024-03-28 10:18:09 +0100 |
commit | 4147302f4be3fe8a5dae3f20a336477cb5f507a4 (patch) | |
tree | 694d7ad69b0ef3e3158c9bee7d6812be9ed2db83 /runtime/lua/vim/_meta/options.lua | |
parent | 19b443251fe0405628a0aa90583e6c6512dd0fd0 (diff) | |
download | rneovim-4147302f4be3fe8a5dae3f20a336477cb5f507a4.tar.gz rneovim-4147302f4be3fe8a5dae3f20a336477cb5f507a4.tar.bz2 rneovim-4147302f4be3fe8a5dae3f20a336477cb5f507a4.zip |
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.
https://github.com/vim/vim/commit/b9f5b95b7bec2414a5a96010514702d99afea18e
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index e8e56e86b2..2d78013208 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -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 |