diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-06 09:34:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 09:34:29 +0800 |
commit | e8661133c533345e8d83a38b077e45922988fa90 (patch) | |
tree | 05f32f244118b65f6a2ba3b99abc4e68476148b4 /src/nvim/move.c | |
parent | b99f13385cfd15e161b18f103a5e36469f49431f (diff) | |
download | rneovim-e8661133c533345e8d83a38b077e45922988fa90.tar.gz rneovim-e8661133c533345e8d83a38b077e45922988fa90.tar.bz2 rneovim-e8661133c533345e8d83a38b077e45922988fa90.zip |
vim-patch:9.0.0904: various comment and indent flaws (#23498)
Problem: Various comment and indent flaws.
Solution: Improve comments and indenting.
https://github.com/vim/vim/commit/88456cd3c49a3dd1fda17cf350daa9b8216b1aa6
Omit test_function_lists.vim change as that file is likely not
applicable to Nvim due to the existence of Nvim-only functions.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/move.c')
-rw-r--r-- | src/nvim/move.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c index 447926ceb8..c93c94f8c5 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -2328,9 +2328,10 @@ void cursor_correct(void) curwin->w_viewport_invalid = true; } -// Move screen "count" pages up or down and update screen. -// -// Return FAIL for failure, OK otherwise. +/// Move screen "count" pages up ("dir" is BACKWARD) or down ("dir" is FORWARD) +/// and update the screen. +/// +/// @return FAIL for failure, OK otherwise. int onepage(Direction dir, long count) { long n; |