diff options
author | ckelsel <ckelsel@hotmail.com> | 2018-01-15 20:08:37 +0800 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2018-01-15 20:20:15 +0800 |
commit | 808f5043055f9bd2f083befc0d50f00b0ffb5c25 (patch) | |
tree | 73a82c06f9d8f1d8303def016b2c68e9260f2c70 /src/nvim/misc1.c | |
parent | 28998cfd815abd690ffa0b9bab786263af619008 (diff) | |
download | rneovim-808f5043055f9bd2f083befc0d50f00b0ffb5c25.tar.gz rneovim-808f5043055f9bd2f083befc0d50f00b0ffb5c25.tar.bz2 rneovim-808f5043055f9bd2f083befc0d50f00b0ffb5c25.zip |
vim-patch:8.0.0421: diff mode wrong when adding line at end of buffer
Problem: Diff mode is displayed wrong when adding a line at the end of a
buffer.
Solution: Adjust marks in diff mode. (James McCoy, closes vim/vim#1329)
https://github.com/vim/vim/commit/f58a8475e17bd566760fc7e2a17d35ddf4edacf2
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index f7ee2950ef..a498c7f4da 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -749,8 +749,9 @@ open_line ( // Postpone calling changed_lines(), because it would mess up folding // with markers. // Skip mark_adjust when adding a line after the last one, there can't - // be marks there. - if (curwin->w_cursor.lnum + 1 < curbuf->b_ml.ml_line_count) { + // be marks there. But still needed in diff mode. + if (curwin->w_cursor.lnum + 1 < curbuf->b_ml.ml_line_count + || curwin->w_p_diff) { mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L, false); } did_append = true; @@ -1864,8 +1865,8 @@ void appended_lines(linenr_T lnum, long count) void appended_lines_mark(linenr_T lnum, long count) { // Skip mark_adjust when adding a line after the last one, there can't - // be marks there. - if (lnum + count < curbuf->b_ml.ml_line_count) { + // be marks there. But it's still needed in diff mode. + if (lnum + count < curbuf->b_ml.ml_line_count || curwin->w_p_diff) { mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L, false); } changed_lines(lnum + 1, 0, lnum + 1, count); |