diff options
author | Andrej Zieger <jerdna-regeiz@users.noreply.github.com> | 2019-05-26 17:06:50 +0200 |
---|---|---|
committer | Andrej Zieger <jerdna-regeiz@users.noreply.github.com> | 2019-05-26 19:32:32 +0200 |
commit | 80f40f0203f5af167f8c77bf6b9f22a4d1abd6da (patch) | |
tree | 3fd67d3bca8a4dfb144ca27cf68c117050e28073 /src/nvim/normal.c | |
parent | 0b9e57aca1ec12f35c2a2531be9769eff076c6b2 (diff) | |
download | rneovim-80f40f0203f5af167f8c77bf6b9f22a4d1abd6da.tar.gz rneovim-80f40f0203f5af167f8c77bf6b9f22a4d1abd6da.tar.bz2 rneovim-80f40f0203f5af167f8c77bf6b9f22a4d1abd6da.zip |
lint
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 50abd226fc..d6e78d9ce4 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -4213,10 +4213,10 @@ dozet: set_fraction(curwin); break; - /* "z^", "z-" and "zb": put cursor at bottom of screen */ - case '^': /* Strange Vi behavior: <count>z^ finds line at top of window - * when <count> is at bottom of window, and puts that one at - * bottom of window. */ + // "z^", "z-" and "zb": put cursor at bottom of screen + case '^': // Strange Vi behavior: <count>z^ finds line at top of window + // when <count> is at bottom of window, and puts that one at + // bottom of window. if (cap->count0 != 0) { scroll_cursor_bot(0, true); curwin->w_cursor.lnum = curwin->w_topline; |