From d8d4cfcb393123fa19640be0806091d47935407f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 15 Aug 2022 15:55:10 +0100 Subject: patch 9.0.0214: splitting a line may duplicate virtual text Problem: Splitting a line may duplicate virtual text. (Ben Jackson) Solution: Don't duplicate a text property with virtual text. Make auto-indenting work better. (closes #10919) --- src/vim.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vim.h') diff --git a/src/vim.h b/src/vim.h index 6db48185c..9445fa2da 100644 --- a/src/vim.h +++ b/src/vim.h @@ -2778,6 +2778,7 @@ long elapsed(DWORD start_tick); // Flags for adjust_prop_columns() #define APC_SAVE_FOR_UNDO 1 // call u_savesub() before making changes #define APC_SUBSTITUTE 2 // text is replaced, not inserted +#define APC_INDENT 4 // changing indent #define CLIP_ZINDEX 32000 -- cgit v1.2.1