diff options
| author | Marco Hinz <mh.codebro+github@gmail.com> | 2019-03-31 15:13:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-31 15:13:38 +0200 |
| commit | 4c4a57015687df67c9bf48b721ab81e295f39118 (patch) | |
| tree | cd4f677f17ce19e65d9cc2dfb7fe5cf276076e48 /src/nvim/buffer_defs.h | |
| parent | 11f03ee3f3da623440607220b8167a3b797d9daa (diff) | |
| parent | 33d4c381315412b52e3e2867d37ac0851e3d0faf (diff) | |
| download | rneovim-4c4a57015687df67c9bf48b721ab81e295f39118.tar.gz rneovim-4c4a57015687df67c9bf48b721ab81e295f39118.tar.bz2 rneovim-4c4a57015687df67c9bf48b721ab81e295f39118.zip | |
Merge #9807 from mhinz/window-local-last-cursormoved
Diffstat (limited to 'src/nvim/buffer_defs.h')
| -rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 1b0af8aa49..2e6f24d9c4 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1035,6 +1035,7 @@ struct window_S { // current virtual column linenr_T w_last_cursorline; ///< where last 'cursorline' was drawn + pos_T w_last_cursormoved; ///< for CursorMoved event // the next seven are used to update the visual part char w_old_visual_mode; ///< last known VIsual_mode |