diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-18 00:47:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 00:47:30 +0200 |
commit | 3059516e8ae04c6d2e1c41ac5f65896b4af2a196 (patch) | |
tree | 38e6c7097389b22bf51a351f4dccc928d5d30aaa /src/nvim/buffer_defs.h | |
parent | aff64b3a52d3d897c5c88270c8e78ba3d02c52f7 (diff) | |
parent | 6476d081be6fa0295cc0cdce4965c81303c71eff (diff) | |
download | rneovim-3059516e8ae04c6d2e1c41ac5f65896b4af2a196.tar.gz rneovim-3059516e8ae04c6d2e1c41ac5f65896b4af2a196.tar.bz2 rneovim-3059516e8ae04c6d2e1c41ac5f65896b4af2a196.zip |
Merge #9086 'vim-patch:8.1.0448'
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 9ff62a80af..e86eaf010f 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -983,9 +983,11 @@ struct window_S { used to try to stay in the same column for up/down cursor motions. */ - int w_set_curswant; /* If set, then update w_curswant the next - time through cursupdate() to the - current virtual column */ + int w_set_curswant; // If set, then update w_curswant the next + // time through cursupdate() to the + // current virtual column + + linenr_T w_last_cursorline; ///< where last 'cursorline' was drawn // the next seven are used to update the visual part char w_old_visual_mode; ///< last known VIsual_mode |