diff options
author | Luuk van Baal <luukvbaal@gmail.com> | 2023-04-26 23:36:59 +0200 |
---|---|---|
committer | Luuk van Baal <luukvbaal@gmail.com> | 2023-05-02 13:11:47 +0200 |
commit | 223c7173eea2a4abec75611bd70051ea0b4c5d20 (patch) | |
tree | 8912dab1c9131fc9b83b3683b8e09399ed67b87c /src/nvim/buffer_defs.h | |
parent | e8dfff5f288f5fcf4a11d62e973080600f05c980 (diff) | |
download | rneovim-223c7173eea2a4abec75611bd70051ea0b4c5d20.tar.gz rneovim-223c7173eea2a4abec75611bd70051ea0b4c5d20.tar.bz2 rneovim-223c7173eea2a4abec75611bd70051ea0b4c5d20.zip |
vim-patch:9.0.0746: breakindent test cases are commented out
Problem: Breakindent test cases are commented out.
Solution: Adjust expected result to slightly different behavior. Correct
computations for cursor position.
https://github.com/vim/vim/commit/856c5d2bc7c3864f8b63a0ab3e376d5c5e51f1d5
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 0f832d3659..ce8ee21882 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1170,7 +1170,7 @@ struct window_S { // 'wrap' is off colnr_T w_skipcol; // starting screen column for the first // line in the window; used when 'wrap' is - // on + // on; does not include win_col_off() // six fields that are only used when there is a WinScrolled autocommand linenr_T w_last_topline; ///< last known value for w_topline |