From 427cf16e44d047c14e0ca1b95eb09fc8b8eb2f3d Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Fri, 13 Sep 2019 21:30:23 -0400 Subject: vim-patch:8.1.0719: too many #ifdefs [ci skip] #11016 Problem: Too many #ifdefs. Solution: Always build with the +visualextra feature. https://github.com/vim/vim/commit/870ba5f6dce974b6c1c47bf9d3b20db805d10b36 --- src/nvim/ops.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/nvim/ops.c') diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 898501e6dd..be45376deb 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -264,10 +264,8 @@ void op_shift(oparg_T *oap, int curs_top, int amount) --curbuf->b_op_end.col; } -/* - * shift the current line one shiftwidth left (if left != 0) or right - * leaves cursor on first blank in the line - */ +// Shift the current line one shiftwidth left (if left != 0) or right +// leaves cursor on first blank in the line. void shift_line( int left, int round, -- cgit