aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/normal.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-02-07 01:13:51 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-02-07 09:25:51 +0100
commit35a789278128bfe5d28e4c61ac7fa727042fd30a (patch)
treed41bd3f486d87842fa65108a072de465e2dee4bf /src/nvim/normal.c
parented37136c5c85fbcbf98a071330025b3b0edbd065 (diff)
downloadrneovim-35a789278128bfe5d28e4c61ac7fa727042fd30a.tar.gz
rneovim-35a789278128bfe5d28e4c61ac7fa727042fd30a.tar.bz2
rneovim-35a789278128bfe5d28e4c61ac7fa727042fd30a.zip
lint, minor cleanup
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r--src/nvim/normal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c
index 47044a6072..bca4a0f93e 100644
--- a/src/nvim/normal.c
+++ b/src/nvim/normal.c
@@ -5031,8 +5031,8 @@ static void nv_right(cmdarg_T *cap)
if ((!PAST_LINE && oneright() == false)
|| (PAST_LINE && *get_cursor_pos_ptr() == NUL)
) {
- // <Space> wraps to next line if 'whichwrap' has 's'.
- // 'l' wraps to next line if 'whichwrap' has 'l'.
+ // <Space> wraps to next line if 'whichwrap' has 's'.
+ // 'l' wraps to next line if 'whichwrap' has 'l'.
// CURS_RIGHT wraps to next line if 'whichwrap' has '>'.
if (((cap->cmdchar == ' ' && vim_strchr(p_ww, 's') != NULL)
|| (cap->cmdchar == 'l' && vim_strchr(p_ww, 'l') != NULL)