diff options
author | Rom Grk <romgrk.cc@gmail.com> | 2020-11-06 20:06:40 -0500 |
---|---|---|
committer | Rom Grk <romgrk.cc@gmail.com> | 2020-11-06 20:06:52 -0500 |
commit | 4ed6f6949737749521b342d164d8695e8958d02f (patch) | |
tree | 4d1b40da09918d95a7083a1f495a8100a9b891d7 /src/nvim/buffer_defs.h | |
parent | 13e0ca3e194a438383b8451e19090355aa6c29dc (diff) | |
download | rneovim-4ed6f6949737749521b342d164d8695e8958d02f.tar.gz rneovim-4ed6f6949737749521b342d164d8695e8958d02f.tar.bz2 rneovim-4ed6f6949737749521b342d164d8695e8958d02f.zip |
my fight with the linter
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 540542f409..b72ca51517 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -1230,10 +1230,8 @@ struct window_S { colnr_T w_skipcol; // starting column when a single line // doesn't fit in the window - /* - * "w_last_topline" and "w_last_leftcol" are used to determine if - * a Scroll autocommand should be emitted. - */ + // "w_last_topline" and "w_last_leftcol" are used to determine if + // a Scroll autocommand should be emitted. linenr_T w_last_topline; ///< last known value for topline colnr_T w_last_leftcol; ///< last known value for leftcol int w_last_width; ///< last known value for width |