diff options
author | James McCoy <jamessan@jamessan.com> | 2016-12-27 14:37:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 14:37:30 -0500 |
commit | fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13 (patch) | |
tree | f54e63aed247b7fdd7fc4b20c96317607d78ec42 /src/nvim/buffer_defs.h | |
parent | 21708d22cefdf69ab3862921483c8a450294a71c (diff) | |
parent | 3224ade9c3b6e339083ab9e66ce3d3f32e050e09 (diff) | |
download | rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.tar.gz rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.tar.bz2 rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.zip |
Merge pull request #5761 from jamessan/vim-7.4.1752
Catchup with upstream quickfix patches
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 2f0e8ad974..0418a737eb 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -609,6 +609,7 @@ struct file_buffer { int b_p_bomb; ///< 'bomb' char_u *b_p_bh; ///< 'bufhidden' char_u *b_p_bt; ///< 'buftype' + bool b_has_qf_entry; ///< quickfix exists for buffer int b_p_bl; ///< 'buflisted' int b_p_cin; ///< 'cindent' char_u *b_p_cino; ///< 'cinoptions' @@ -1036,11 +1037,11 @@ struct window_S { */ int w_wrow, w_wcol; /* cursor position in window */ - linenr_T w_botline; /* number of the line below the bottom of - the screen */ - int w_empty_rows; /* number of ~ rows in window */ - int w_filler_rows; /* number of filler rows at the end of the - window */ + linenr_T w_botline; // number of the line below the bottom of + // the window + int w_empty_rows; // number of ~ rows in window + int w_filler_rows; // number of filler rows at the end of the + // window /* * Info about the lines currently in the window is remembered to avoid |