diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-09-13 21:30:23 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-09-13 18:30:23 -0700 |
commit | 427cf16e44d047c14e0ca1b95eb09fc8b8eb2f3d (patch) | |
tree | f14434972497696fffb79a364b1e13cd49d5e120 /src | |
parent | 4cee0e0731ecac797465f112be2c0b803b654aec (diff) | |
download | rneovim-427cf16e44d047c14e0ca1b95eb09fc8b8eb2f3d.tar.gz rneovim-427cf16e44d047c14e0ca1b95eb09fc8b8eb2f3d.tar.bz2 rneovim-427cf16e44d047c14e0ca1b95eb09fc8b8eb2f3d.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ops.c | 6 |
1 files changed, 2 insertions, 4 deletions
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, |