diff options
author | Rom Grk <romgrk.cc@gmail.com> | 2020-11-07 03:47:52 -0500 |
---|---|---|
committer | Rom Grk <romgrk.cc@gmail.com> | 2020-11-07 03:47:52 -0500 |
commit | d7f639d4e8b46c168f66337bc12233818d39e8ec (patch) | |
tree | 1fdcdbb3e9b6beda8a7ad0af27213be861c8013f /src | |
parent | cedfc1b7477060917a31d4f1c526db3da0deb15c (diff) | |
download | rneovim-d7f639d4e8b46c168f66337bc12233818d39e8ec.tar.gz rneovim-d7f639d4e8b46c168f66337bc12233818d39e8ec.tar.bz2 rneovim-d7f639d4e8b46c168f66337bc12233818d39e8ec.zip |
fix: lint doc-comments
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/move.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c index 549a135a5e..ccd19a81de 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -1021,6 +1021,7 @@ void textpos2screenpos(win_T *wp, pos_T *pos, int *rowp, int *scolp, } /// Scroll the current window down by "line_count" logical lines. "CTRL-Y" +/// /// @param line_count number of lines to scroll /// @param byfold if true, count a closed fold as one line bool scrolldown(long line_count, int byfold) @@ -1098,6 +1099,7 @@ bool scrolldown(long line_count, int byfold) } /// Scroll the current window up by "line_count" logical lines. "CTRL-E" +/// /// @param line_count number of lines to scroll /// @param byfold if true, count a closed fold as one line bool scrollup(long line_count, int byfold) |