0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.0764: indent and option tests fail

Problem:    Indent and option tests fail.
Solution:   Change OP_INDENT.  Add entry to options test table.
This commit is contained in:
Bram Moolenaar
2022-10-15 16:41:53 +01:00
parent a2e4e0fc3b
commit c8b6735573
3 changed files with 9 additions and 1 deletions

View File

@@ -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,