aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/normal.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-02-07 09:57:23 +0100
committerGitHub <noreply@github.com>2018-02-07 09:57:23 +0100
commit366528130e397a6173789072c08b9afa5efd0423 (patch)
treed41bd3f486d87842fa65108a072de465e2dee4bf /src/nvim/normal.c
parent538361955d123d9c93387f7597303c0ef59c6825 (diff)
parent35a789278128bfe5d28e4c61ac7fa727042fd30a (diff)
downloadrneovim-366528130e397a6173789072c08b9afa5efd0423.tar.gz
rneovim-366528130e397a6173789072c08b9afa5efd0423.tar.bz2
rneovim-366528130e397a6173789072c08b9afa5efd0423.zip
Merge #6713 'tests for :! output'
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)