diff --git a/src/ops.c b/src/ops.c index a496c499d3..451545367a 100644 --- a/src/ops.c +++ b/src/ops.c @@ -4119,7 +4119,12 @@ do_pending_operator(cmdarg_T *cap, int old_col, int gui_yank) { if (curbuf->b_p_lisp) { - op_reindent(oap, get_lisp_indent); +#ifdef FEAT_EVAL + if (use_indentexpr_for_lisp()) + op_reindent(oap, get_expr_indent); + else +#endif + op_reindent(oap, get_lisp_indent); break; } op_reindent(oap, diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim index e0f3e48535..dd5f73e431 100644 --- a/src/testdir/gen_opt_test.vim +++ b/src/testdir/gen_opt_test.vim @@ -114,6 +114,7 @@ let test_values = { \ 'keymap': [['', 'accents'], ['xxx']], \ 'keymodel': [['', 'startsel', 'startsel,stopsel'], ['xxx']], \ 'langmap': [['', 'xX', 'aA,bB'], ['xxx']], + \ 'lispoptions': [['', 'expr:0', 'expr:1'], ['xxx']], \ 'listchars': [['', 'eol:x', 'eol:x,space:y'], ['xxx']], \ 'matchpairs': [['', '(:)', '(:),<:>'], ['xxx']], \ 'mkspellmem': [['10000,100,12'], ['', 'xxx']], diff --git a/src/version.c b/src/version.c index 502655ce10..dc5e401777 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 764, /**/ 763, /**/