From e7d6dbc5721342e3d6b04cf285e4510b5569e707 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Fri, 6 May 2022 12:21:04 +0100 Subject: patch 8.2.4882: cannot make 'breakindent' use a specific column Problem: Cannot make 'breakindent' use a specific column. Solution: Add the "column" entry in 'breakindentopt'. (Christian Brabandt, closes #10362, closes #10325) --- src/structs.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/structs.h') diff --git a/src/structs.h b/src/structs.h index 3135616dd..1a607c65e 100644 --- a/src/structs.h +++ b/src/structs.h @@ -3215,7 +3215,7 @@ struct diffblock_S #endif #define SNAP_HELP_IDX 0 -#define SNAP_AUCMD_IDX 1 +#define SNAP_AUCMD_IDX 1 #define SNAP_COUNT 2 /* @@ -3312,7 +3312,8 @@ struct frame_S // for first // fr_child and fr_win are mutually exclusive frame_T *fr_child; // first contained frame - win_T *fr_win; // window that fills this frame + win_T *fr_win; // window that fills this frame; for a snapshot + // set to the current window }; #define FR_LEAF 0 // frame is a leaf @@ -3742,6 +3743,7 @@ struct window_S int w_briopt_shift; // additional shift for breakindent int w_briopt_sbr; // sbr in 'briopt' int w_briopt_list; // additional indent for lists + int w_briopt_vcol; // indent for specific column #endif long w_scbind_pos; -- cgit v1.2.1