diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-11-01 21:54:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-01 21:54:51 +0100 |
commit | d1091bc658a7992b9c3eaaba1b701187a60f0b5e (patch) | |
tree | eeb5cdfc10bfe2aa968c63186551ef6564e6f2f3 /src/nvim/diff.c | |
parent | 720d442d19de4908e22ecf18223358bb7bbb0753 (diff) | |
parent | c146eddc8b768f1cd395ea0ce54c19e64eff0c08 (diff) | |
download | rneovim-d1091bc658a7992b9c3eaaba1b701187a60f0b5e.tar.gz rneovim-d1091bc658a7992b9c3eaaba1b701187a60f0b5e.tar.bz2 rneovim-d1091bc658a7992b9c3eaaba1b701187a60f0b5e.zip |
Merge pull request #12870 from bfredl/themepark
Color themes (per window/line) and lua theme providers
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r-- | src/nvim/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c index 3de5fc49bd..b9c293f6c8 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -643,7 +643,7 @@ void diff_redraw(bool dofold) if (!wp->w_p_diff) { continue; } - redraw_win_later(wp, SOME_VALID); + redraw_later(wp, SOME_VALID); if (dofold && foldmethodIsDiff(wp)) { foldUpdateAll(wp); } @@ -1415,7 +1415,7 @@ void diff_win_options(win_T *wp, int addbuf) if (addbuf) { diff_buf_add(wp->w_buffer); } - redraw_win_later(wp, NOT_VALID); + redraw_later(wp, NOT_VALID); } /// Set options not to show diffs. For the current window or all windows. |