summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-12-03 17:54:10 +0100
committerChristian Brabandt <cb@256bit.org>2023-12-03 17:54:10 +0100
commit5b4d1fcbf06757bae32a894871b9a649c84eba7f (patch)
treea1b1fd68ad1574ab5d1e9986bff1ab64f0d86d01 /src/edit.c
parent4e26a9aab6ad0ceb6bab0fd70e1031abb429f233 (diff)
patch 9.0.2145: wrong scrolling in insert mode with smoothscrollv9.0.2145
Problem: Wrong scrolling in Insert mode with 'smoothscroll' at the bottom of the window. Solution: Don't use set_topline() when 'smoothscroll' is set. fixes: #13612 closes: #13613 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/edit.c b/src/edit.c
index 51753f68bf..9435fd6fc7 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -501,9 +501,12 @@ edit(
* something.
* Don't do this when the topline changed already, it has
* already been adjusted (by insertchar() calling open_line())).
+ * Also don't do this when 'smoothscroll' is set, as the window should
+ * then be scrolled by screen lines.
*/
if (curbuf->b_mod_set
&& curwin->w_p_wrap
+ && !curwin->w_p_sms
&& !did_backspace
&& curwin->w_topline == old_topline
#ifdef FEAT_DIFF