From 9c437439452978fec4f858323e532b6cd4052608 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 23 May 2019 20:07:37 -0400 Subject: lint --- src/nvim/normal.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/nvim/normal.c b/src/nvim/normal.c index fbf1cc04e2..04eede18bd 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -5633,11 +5633,8 @@ static void nv_brackets(cmdarg_T *cap) if ((fdo_flags & FDO_BLOCK) && KeyTyped && cap->oap->op_type == OP_NOP) foldOpenCursor(); } - } - /* - * "[p", "[P", "]P" and "]p": put with indent adjustment - */ - else if (cap->nchar == 'p' || cap->nchar == 'P') { + } else if (cap->nchar == 'p' || cap->nchar == 'P') { + // "[p", "[P", "]P" and "]p": put with indent adjustment nv_put_opt(cap, true); } /* -- cgit