annotate src/structs.h @ 32669:448aef880252

normalize line endings
author Christian Brabandt <cb@256bit.org>
date Mon, 26 Jun 2023 09:54:34 +0200
parents 2d1eba13035c
children 695b50472e85
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
32669
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
7 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
9 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
10 * This file contains various definitions of structures that are used by Vim
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
11 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
12
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
13 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
14 * There is something wrong in the SAS compiler that makes typedefs not
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
15 * valid in include files. Has been fixed in version 6.58.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
16 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
17 #if defined(SASC) && SASC < 658
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
18 typedef long linenr_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
19 typedef int colnr_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
20 typedef unsigned short short_u;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
21 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
22
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
23 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
24 * Position in file or buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
25 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
26 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
27 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
28 linenr_T lnum; // line number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
29 colnr_T col; // column number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
30 colnr_T coladd; // extra virtual column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
31 } pos_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
32
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
33
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
34 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
35 * Same, but without coladd.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
36 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
37 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
38 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
39 linenr_T lnum; // line number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
40 colnr_T col; // column number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
41 } lpos_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
42
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
43 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
44 * Structure used for growing arrays.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
45 * This is used to store information that only grows, is deleted all at
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
46 * once, and needs to be accessed by index. See ga_clear() and ga_grow().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
47 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
48 typedef struct growarray
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
49 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
50 int ga_len; // current number of items used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
51 int ga_maxlen; // maximum number of items possible
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
52 int ga_itemsize; // sizeof(item)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
53 int ga_growsize; // number of items to grow each time
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
54 void *ga_data; // pointer to the first item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
55 } garray_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
56
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
57 #define GA_EMPTY {0, 0, 0, 0, NULL}
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
58
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
59 typedef struct window_S win_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
60 typedef struct wininfo_S wininfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
61 typedef struct frame_S frame_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
62 typedef int scid_T; // script ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
63 typedef struct file_buffer buf_T; // forward declaration
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
64 typedef struct terminal_S term_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
65
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
66 #ifdef FEAT_MENU
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
67 typedef struct VimMenu vimmenu_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
68 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
69
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
70 // maximum value for sc_version
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
71 #define SCRIPT_VERSION_MAX 4
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
72 // value for sc_version in a Vim9 script file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
73 #define SCRIPT_VERSION_VIM9 999999
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
74
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
75 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
76 * SCript ConteXt (SCTX): identifies a script line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
77 * When sourcing a script "sc_lnum" is zero, "sourcing_lnum" is the current
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
78 * line number. When executing a user function "sc_lnum" is the line where the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
79 * function was defined, "sourcing_lnum" is the line number inside the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
80 * function. When stored with a function, mapping, option, etc. "sc_lnum" is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
81 * the line number in the script "sc_sid".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
82 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
83 * sc_version is also here, for convenience.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
84 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
85 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
86 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
87 scid_T sc_sid; // script ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
88 int sc_seq; // sourcing sequence number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
89 linenr_T sc_lnum; // line number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
90 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
91 int sc_version; // :scriptversion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
92 } sctx_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
93
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
94 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
95 * Reference to a buffer that stores the value of buf_free_count.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
96 * bufref_valid() only needs to check "buf" when the count differs.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
97 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
98 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
99 buf_T *br_buf;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
100 int br_fnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
101 int br_buf_free_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
102 } bufref_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
103
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
104 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
105 * This is here because regexp.h needs pos_T and below regprog_T is used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
106 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
107 #include "regexp.h"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
108
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
109 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
110 * This is here because gui.h needs the pos_T and win_T, and win_T needs gui.h
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
111 * for scrollbar_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
112 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
113 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
114 # include "gui.h"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
115 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
116 # ifdef FEAT_XCLIPBOARD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
117 # include <X11/Intrinsic.h>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
118 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
119 # define guicolor_T long
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
120 # define INVALCOLOR ((guicolor_T)0x1ffffff)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
121 // only used for cterm.bg_rgb and cterm.fg_rgb: use cterm color
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
122 # define CTERMCOLOR ((guicolor_T)0x1fffffe)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
123 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
124 #define COLOR_INVALID(x) ((x) == INVALCOLOR || (x) == CTERMCOLOR)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
125
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
126 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
127 # include "libvterm/include/vterm.h"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
128 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
129 VTermColor fg;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
130 VTermColor bg;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
131 } termcellcolor_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
132 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
133
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
134 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
135 * marks: positions in a file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
136 * (a normal mark is a lnum/col pair, the same as a file position)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
137 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
138
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
139 #define NMARKS ('z' - 'a' + 1) // max. # of named marks
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
140 #define EXTRA_MARKS 10 // marks 0-9
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
141 #define JUMPLISTSIZE 100 // max. # of marks in jump list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
142 #define TAGSTACKSIZE 20 // max. # of tags in tag stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
143
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
144 typedef struct filemark
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
145 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
146 pos_T mark; // cursor position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
147 int fnum; // file number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
148 } fmark_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
149
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
150 // Xtended file mark: also has a file name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
151 typedef struct xfilemark
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
152 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
153 fmark_T fmark;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
154 char_u *fname; // file name, used when fnum == 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
155 #ifdef FEAT_VIMINFO
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
156 time_T time_set;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
157 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
158 } xfmark_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
159
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
160 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
161 * The taggy struct is used to store the information about a :tag command.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
162 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
163 typedef struct taggy
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
164 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
165 char_u *tagname; // tag name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
166 fmark_T fmark; // cursor position BEFORE ":tag"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
167 int cur_match; // match number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
168 int cur_fnum; // buffer number used for cur_match
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
169 char_u *user_data; // used with tagfunc
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
170 } taggy_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
171
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
172 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
173 * Structure that contains all options that are local to a window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
174 * Used twice in a window: for the current buffer and for all buffers.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
175 * Also used in wininfo_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
176 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
177 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
178 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
179 #ifdef FEAT_ARABIC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
180 int wo_arab;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
181 # define w_p_arab w_onebuf_opt.wo_arab // 'arabic'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
182 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
183 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
184 int wo_bri;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
185 # define w_p_bri w_onebuf_opt.wo_bri // 'breakindent'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
186 char_u *wo_briopt;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
187 # define w_p_briopt w_onebuf_opt.wo_briopt // 'breakindentopt'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
188 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
189 char_u *wo_wcr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
190 # define w_p_wcr w_onebuf_opt.wo_wcr // 'wincolor'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
191 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
192 int wo_diff;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
193 # define w_p_diff w_onebuf_opt.wo_diff // 'diff'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
194 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
195 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
196 long wo_fdc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
197 # define w_p_fdc w_onebuf_opt.wo_fdc // 'foldcolumn'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
198 int wo_fdc_save;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
199 # define w_p_fdc_save w_onebuf_opt.wo_fdc_save // 'foldenable' saved for diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
200 int wo_fen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
201 # define w_p_fen w_onebuf_opt.wo_fen // 'foldenable'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
202 int wo_fen_save;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
203 # define w_p_fen_save w_onebuf_opt.wo_fen_save // 'foldenable' saved for diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
204 char_u *wo_fdi;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
205 # define w_p_fdi w_onebuf_opt.wo_fdi // 'foldignore'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
206 long wo_fdl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
207 # define w_p_fdl w_onebuf_opt.wo_fdl // 'foldlevel'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
208 int wo_fdl_save;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
209 # define w_p_fdl_save w_onebuf_opt.wo_fdl_save // 'foldlevel' state saved for diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
210 char_u *wo_fdm;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
211 # define w_p_fdm w_onebuf_opt.wo_fdm // 'foldmethod'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
212 char_u *wo_fdm_save;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
213 # define w_p_fdm_save w_onebuf_opt.wo_fdm_save // 'fdm' saved for diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
214 long wo_fml;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
215 # define w_p_fml w_onebuf_opt.wo_fml // 'foldminlines'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
216 long wo_fdn;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
217 # define w_p_fdn w_onebuf_opt.wo_fdn // 'foldnestmax'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
218 # ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
219 char_u *wo_fde;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
220 # define w_p_fde w_onebuf_opt.wo_fde // 'foldexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
221 char_u *wo_fdt;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
222 # define w_p_fdt w_onebuf_opt.wo_fdt // 'foldtext'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
223 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
224 char_u *wo_fmr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
225 # define w_p_fmr w_onebuf_opt.wo_fmr // 'foldmarker'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
226 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
227 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
228 int wo_lbr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
229 # define w_p_lbr w_onebuf_opt.wo_lbr // 'linebreak'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
230 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
231 int wo_list;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
232 #define w_p_list w_onebuf_opt.wo_list // 'list'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
233 char_u *wo_lcs;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
234 #define w_p_lcs w_onebuf_opt.wo_lcs // 'listchars'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
235 char_u *wo_fcs;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
236 #define w_p_fcs w_onebuf_opt.wo_fcs // 'fillchars'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
237 int wo_nu;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
238 #define w_p_nu w_onebuf_opt.wo_nu // 'number'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
239 int wo_rnu;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
240 #define w_p_rnu w_onebuf_opt.wo_rnu // 'relativenumber'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
241 char_u *wo_ve;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
242 #define w_p_ve w_onebuf_opt.wo_ve // 'virtualedit'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
243 unsigned wo_ve_flags;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
244 #define w_ve_flags w_onebuf_opt.wo_ve_flags // flags for 'virtualedit'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
245 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
246 long wo_nuw;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
247 # define w_p_nuw w_onebuf_opt.wo_nuw // 'numberwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
248 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
249 int wo_wfh;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
250 # define w_p_wfh w_onebuf_opt.wo_wfh // 'winfixheight'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
251 int wo_wfw;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
252 # define w_p_wfw w_onebuf_opt.wo_wfw // 'winfixwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
253 #if defined(FEAT_QUICKFIX)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
254 int wo_pvw;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
255 # define w_p_pvw w_onebuf_opt.wo_pvw // 'previewwindow'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
256 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
257 #ifdef FEAT_RIGHTLEFT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
258 int wo_rl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
259 # define w_p_rl w_onebuf_opt.wo_rl // 'rightleft'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
260 char_u *wo_rlc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
261 # define w_p_rlc w_onebuf_opt.wo_rlc // 'rightleftcmd'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
262 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
263 long wo_scr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
264 #define w_p_scr w_onebuf_opt.wo_scr // 'scroll'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
265 int wo_sms;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
266 #define w_p_sms w_onebuf_opt.wo_sms // 'smoothscroll'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
267 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
268 int wo_spell;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
269 # define w_p_spell w_onebuf_opt.wo_spell // 'spell'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
270 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
271 #if defined(FEAT_SYN_HL) || defined(FEAT_FOLDING) || defined(FEAT_DIFF)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
272 int wo_cuc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
273 # define w_p_cuc w_onebuf_opt.wo_cuc // 'cursorcolumn'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
274 int wo_cul;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
275 # define w_p_cul w_onebuf_opt.wo_cul // 'cursorline'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
276 char_u *wo_culopt;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
277 # define w_p_culopt w_onebuf_opt.wo_culopt // 'cursorlineopt'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
278 char_u *wo_cc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
279 # define w_p_cc w_onebuf_opt.wo_cc // 'colorcolumn'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
280 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
281 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
282 char_u *wo_sbr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
283 #define w_p_sbr w_onebuf_opt.wo_sbr // 'showbreak'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
284 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
285 #ifdef FEAT_STL_OPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
286 char_u *wo_stl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
287 #define w_p_stl w_onebuf_opt.wo_stl // 'statusline'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
288 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
289 int wo_scb;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
290 #define w_p_scb w_onebuf_opt.wo_scb // 'scrollbind'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
291 int wo_diff_saved; // options were saved for starting diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
292 #define w_p_diff_saved w_onebuf_opt.wo_diff_saved
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
293 int wo_scb_save; // 'scrollbind' saved for diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
294 #define w_p_scb_save w_onebuf_opt.wo_scb_save
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
295 int wo_wrap;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
296 #define w_p_wrap w_onebuf_opt.wo_wrap // 'wrap'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
297 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
298 int wo_wrap_save; // 'wrap' state saved for diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
299 # define w_p_wrap_save w_onebuf_opt.wo_wrap_save
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
300 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
301 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
302 char_u *wo_cocu; // 'concealcursor'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
303 # define w_p_cocu w_onebuf_opt.wo_cocu
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
304 long wo_cole; // 'conceallevel'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
305 # define w_p_cole w_onebuf_opt.wo_cole
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
306 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
307 int wo_crb;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
308 #define w_p_crb w_onebuf_opt.wo_crb // 'cursorbind'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
309 int wo_crb_save; // 'cursorbind' state saved for diff mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
310 #define w_p_crb_save w_onebuf_opt.wo_crb_save
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
311 #ifdef FEAT_SIGNS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
312 char_u *wo_scl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
313 # define w_p_scl w_onebuf_opt.wo_scl // 'signcolumn'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
314 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
315 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
316 char_u *wo_twk;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
317 # define w_p_twk w_onebuf_opt.wo_twk // 'termwinkey'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
318 char_u *wo_tws;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
319 # define w_p_tws w_onebuf_opt.wo_tws // 'termwinsize'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
320 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
321
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
322 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
323 sctx_T wo_script_ctx[WV_COUNT]; // SCTXs for window-local options
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
324 # define w_p_script_ctx w_onebuf_opt.wo_script_ctx
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
325 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
326 } winopt_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
327
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
328 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
329 * Window info stored with a buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
330 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
331 * Two types of info are kept for a buffer which are associated with a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
332 * specific window:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
333 * 1. Each window can have a different line number associated with a buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
334 * 2. The window-local options for a buffer work in a similar way.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
335 * The window-info is kept in a list at b_wininfo. It is kept in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
336 * most-recently-used order.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
337 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
338 struct wininfo_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
339 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
340 wininfo_T *wi_next; // next entry or NULL for last entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
341 wininfo_T *wi_prev; // previous entry or NULL for first entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
342 win_T *wi_win; // pointer to window that did set wi_fpos
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
343 pos_T wi_fpos; // last cursor position in the file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
344 winopt_T wi_opt; // local window options
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
345 int wi_optset; // TRUE when wi_opt has useful values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
346 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
347 int wi_fold_manual; // copy of w_fold_manual
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
348 garray_T wi_folds; // clone of w_folds
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
349 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
350 int wi_changelistidx; // copy of w_changelistidx
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
351 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
352
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
353 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
354 * Info used to pass info about a fold from the fold-detection code to the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
355 * code that displays the foldcolumn.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
356 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
357 typedef struct foldinfo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
358 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
359 int fi_level; // level of the fold; when this is zero the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
360 // other fields are invalid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
361 int fi_lnum; // line number where fold starts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
362 int fi_low_level; // lowest fold level that starts in the same
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
363 // line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
364 } foldinfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
365
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
366 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
367 * Structure to store info about the Visual area.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
368 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
369 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
370 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
371 pos_T vi_start; // start pos of last VIsual
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
372 pos_T vi_end; // end position of last VIsual
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
373 int vi_mode; // VIsual_mode of last VIsual
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
374 colnr_T vi_curswant; // MAXCOL from w_curswant
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
375 } visualinfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
376
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
377 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
378 * structures used for undo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
379 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
380
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
381 // One line saved for undo. After the NUL terminated text there might be text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
382 // properties, thus ul_len can be larger than STRLEN(ul_line) + 1.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
383 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
384 char_u *ul_line; // text of the line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
385 long ul_len; // length of the line including NUL, plus text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
386 // properties
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
387 } undoline_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
388
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
389 typedef struct u_entry u_entry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
390 typedef struct u_header u_header_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
391 struct u_entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
392 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
393 u_entry_T *ue_next; // pointer to next entry in list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
394 linenr_T ue_top; // number of line above undo block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
395 linenr_T ue_bot; // number of line below undo block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
396 linenr_T ue_lcount; // linecount when u_save called
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
397 undoline_T *ue_array; // array of lines in undo block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
398 long ue_size; // number of lines in ue_array
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
399 #ifdef U_DEBUG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
400 int ue_magic; // magic number to check allocation
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
401 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
402 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
403
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
404 struct u_header
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
405 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
406 // The following have a pointer and a number. The number is used when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
407 // reading the undo file in u_read_undo()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
408 union {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
409 u_header_T *ptr; // pointer to next undo header in list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
410 long seq;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
411 } uh_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
412 union {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
413 u_header_T *ptr; // pointer to previous header in list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
414 long seq;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
415 } uh_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
416 union {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
417 u_header_T *ptr; // pointer to next header for alt. redo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
418 long seq;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
419 } uh_alt_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
420 union {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
421 u_header_T *ptr; // pointer to previous header for alt. redo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
422 long seq;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
423 } uh_alt_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
424 long uh_seq; // sequence number, higher == newer undo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
425 int uh_walk; // used by undo_time()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
426 u_entry_T *uh_entry; // pointer to first entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
427 u_entry_T *uh_getbot_entry; // pointer to where ue_bot must be set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
428 pos_T uh_cursor; // cursor position before saving
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
429 long uh_cursor_vcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
430 int uh_flags; // see below
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
431 pos_T uh_namedm[NMARKS]; // marks before undo/after redo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
432 visualinfo_T uh_visual; // Visual areas before undo/after redo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
433 time_T uh_time; // timestamp when the change was made
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
434 long uh_save_nr; // set when the file was saved after the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
435 // changes in this block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
436 #ifdef U_DEBUG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
437 int uh_magic; // magic number to check allocation
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
438 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
439 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
440
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
441 // values for uh_flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
442 #define UH_CHANGED 0x01 // b_changed flag before undo/after redo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
443 #define UH_EMPTYBUF 0x02 // buffer was empty
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
444
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
445 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
446 * structures used in undo.c
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
447 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
448 #define ALIGN_LONG // longword alignment and use filler byte
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
449 #define ALIGN_SIZE (sizeof(long))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
450
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
451 #define ALIGN_MASK (ALIGN_SIZE - 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
452
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
453 typedef struct m_info minfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
454
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
455 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
456 * structure used to link chunks in one of the free chunk lists.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
457 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
458 struct m_info
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
459 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
460 #ifdef ALIGN_LONG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
461 long_u m_size; // size of the chunk (including m_info)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
462 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
463 short_u m_size; // size of the chunk (including m_info)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
464 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
465 minfo_T *m_next; // pointer to next free chunk in the list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
466 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
467
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
468 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
469 * things used in memfile.c
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
470 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
471
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
472 typedef struct block_hdr bhdr_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
473 typedef struct memfile memfile_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
474 typedef long blocknr_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
475
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
476 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
477 * mf_hashtab_T is a chained hashtable with blocknr_T key and arbitrary
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
478 * structures as items. This is an intrusive data structure: we require
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
479 * that items begin with mf_hashitem_T which contains the key and linked
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
480 * list pointers. List of items in each bucket is doubly-linked.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
481 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
482
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
483 typedef struct mf_hashitem_S mf_hashitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
484
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
485 struct mf_hashitem_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
486 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
487 mf_hashitem_T *mhi_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
488 mf_hashitem_T *mhi_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
489 blocknr_T mhi_key;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
490 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
491
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
492 #define MHT_INIT_SIZE 64
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
493
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
494 typedef struct mf_hashtab_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
495 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
496 long_u mht_mask; // mask used for hash value (nr of items
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
497 // in array is "mht_mask" + 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
498 long_u mht_count; // nr of items inserted into hashtable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
499 mf_hashitem_T **mht_buckets; // points to mht_small_buckets or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
500 //dynamically allocated array
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
501 mf_hashitem_T *mht_small_buckets[MHT_INIT_SIZE]; // initial buckets
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
502 char mht_fixed; // non-zero value forbids growth
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
503 } mf_hashtab_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
504
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
505 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
506 * for each (previously) used block in the memfile there is one block header.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
507 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
508 * The block may be linked in the used list OR in the free list.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
509 * The used blocks are also kept in hash lists.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
510 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
511 * The used list is a doubly linked list, most recently used block first.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
512 * The blocks in the used list have a block of memory allocated.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
513 * mf_used_count is the number of pages in the used list.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
514 * The hash lists are used to quickly find a block in the used list.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
515 * The free list is a single linked list, not sorted.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
516 * The blocks in the free list have no block of memory allocated and
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
517 * the contents of the block in the file (if any) is irrelevant.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
518 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
519
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
520 struct block_hdr
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
521 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
522 mf_hashitem_T bh_hashitem; // header for hash table and key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
523 #define bh_bnum bh_hashitem.mhi_key // block number, part of bh_hashitem
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
524
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
525 bhdr_T *bh_next; // next block_hdr in free or used list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
526 bhdr_T *bh_prev; // previous block_hdr in used list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
527 char_u *bh_data; // pointer to memory (for used block)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
528 int bh_page_count; // number of pages in this block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
529
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
530 #define BH_DIRTY 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
531 #define BH_LOCKED 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
532 char bh_flags; // BH_DIRTY or BH_LOCKED
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
533 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
534
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
535 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
536 * when a block with a negative number is flushed to the file, it gets
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
537 * a positive number. Because the reference to the block is still the negative
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
538 * number, we remember the translation to the new positive number in the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
539 * double linked trans lists. The structure is the same as the hash lists.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
540 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
541 typedef struct nr_trans NR_TRANS;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
542
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
543 struct nr_trans
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
544 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
545 mf_hashitem_T nt_hashitem; // header for hash table and key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
546 #define nt_old_bnum nt_hashitem.mhi_key // old, negative, number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
547
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
548 blocknr_T nt_new_bnum; // new, positive, number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
549 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
550
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
551
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
552 typedef struct buffblock buffblock_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
553 typedef struct buffheader buffheader_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
554
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
555 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
556 * structure used to store one block of the stuff/redo/recording buffers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
557 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
558 struct buffblock
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
559 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
560 buffblock_T *b_next; // pointer to next buffblock
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
561 char_u b_str[1]; // contents (actually longer)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
562 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
563
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
564 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
565 * header used for the stuff buffer and the redo buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
566 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
567 struct buffheader
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
568 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
569 buffblock_T bh_first; // first (dummy) block of list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
570 buffblock_T *bh_curr; // buffblock for appending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
571 int bh_index; // index for reading
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
572 int bh_space; // space in bh_curr for appending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
573 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
574
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
575 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
576 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
577 buffheader_T sr_redobuff;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
578 buffheader_T sr_old_redobuff;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
579 } save_redo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
580
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
581 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
582 XP_PREFIX_NONE, // prefix not used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
583 XP_PREFIX_NO, // "no" prefix for bool option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
584 XP_PREFIX_INV, // "inv" prefix for bool option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
585 } xp_prefix_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
586
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
587 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
588 * used for completion on the command line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
589 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
590 typedef struct expand
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
591 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
592 char_u *xp_pattern; // start of item to expand
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
593 int xp_context; // type of expansion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
594 int xp_pattern_len; // bytes in xp_pattern before cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
595 xp_prefix_T xp_prefix;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
596 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
597 char_u *xp_arg; // completion function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
598 sctx_T xp_script_ctx; // SCTX for completion function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
599 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
600 int xp_backslash; // one of the XP_BS_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
601 #ifndef BACKSLASH_IN_FILENAME
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
602 int xp_shell; // TRUE for a shell command, more
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
603 // characters need to be escaped
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
604 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
605 int xp_numfiles; // number of files found by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
606 // file name completion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
607 int xp_col; // cursor position in line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
608 char_u **xp_files; // list of files
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
609 char_u *xp_line; // text being completed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
610 #define EXPAND_BUF_LEN 256
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
611 char_u xp_buf[EXPAND_BUF_LEN]; // buffer for returned match
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
612 } expand_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
613
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
614 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
615 * values for xp_backslash
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
616 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
617 #define XP_BS_NONE 0 // nothing special for backslashes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
618 #define XP_BS_ONE 1 // uses one backslash before a space
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
619 #define XP_BS_THREE 2 // uses three backslashes before a space
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
620
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
621 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
622 * Variables shared between getcmdline(), redrawcmdline() and others.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
623 * These need to be saved when using CTRL-R |, that's why they are in a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
624 * structure.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
625 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
626 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
627 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
628 char_u *cmdbuff; // pointer to command line buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
629 int cmdbufflen; // length of cmdbuff
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
630 int cmdlen; // number of chars in command line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
631 int cmdpos; // current cursor position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
632 int cmdspos; // cursor column on screen
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
633 int cmdfirstc; // ':', '/', '?', '=', '>' or NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
634 int cmdindent; // number of spaces before cmdline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
635 char_u *cmdprompt; // message in front of cmdline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
636 int cmdattr; // attributes for prompt
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
637 int overstrike; // Typing mode on the command line. Shared by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
638 // getcmdline() and put_on_cmdline().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
639 expand_T *xpc; // struct being used for expansion, xp_pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
640 // may point into cmdbuff
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
641 int xp_context; // type of expansion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
642 # ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
643 char_u *xp_arg; // user-defined expansion arg
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
644 int input_fn; // when TRUE Invoked for input() function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
645 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
646 } cmdline_info_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
647
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
648 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
649 * Command modifiers ":vertical", ":browse", ":confirm" and ":hide" set a flag.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
650 * This needs to be saved for recursive commands, put them in a structure for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
651 * easy manipulation.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
652 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
653 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
654 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
655 int cmod_flags; // CMOD_ flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
656 #define CMOD_SANDBOX 0x0001 // ":sandbox"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
657 #define CMOD_SILENT 0x0002 // ":silent"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
658 #define CMOD_ERRSILENT 0x0004 // ":silent!"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
659 #define CMOD_UNSILENT 0x0008 // ":unsilent"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
660 #define CMOD_NOAUTOCMD 0x0010 // ":noautocmd"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
661 #define CMOD_HIDE 0x0020 // ":hide"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
662 #define CMOD_BROWSE 0x0040 // ":browse" - invoke file dialog
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
663 #define CMOD_CONFIRM 0x0080 // ":confirm" - invoke yes/no dialog
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
664 #define CMOD_KEEPALT 0x0100 // ":keepalt"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
665 #define CMOD_KEEPMARKS 0x0200 // ":keepmarks"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
666 #define CMOD_KEEPJUMPS 0x0400 // ":keepjumps"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
667 #define CMOD_LOCKMARKS 0x0800 // ":lockmarks"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
668 #define CMOD_KEEPPATTERNS 0x1000 // ":keeppatterns"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
669 #define CMOD_NOSWAPFILE 0x2000 // ":noswapfile"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
670 #define CMOD_VIM9CMD 0x4000 // ":vim9cmd"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
671 #define CMOD_LEGACY 0x8000 // ":legacy"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
672
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
673 int cmod_split; // flags for win_split()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
674 int cmod_tab; // > 0 when ":tab" was used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
675 regmatch_T cmod_filter_regmatch; // set by :filter /pat/
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
676 int cmod_filter_force; // set for :filter!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
677
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
678 int cmod_verbose; // 0 if not set, > 0 to set 'verbose'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
679 // to cmod_verbose - 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
680
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
681 // values for undo_cmdmod()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
682 char_u *cmod_save_ei; // saved value of 'eventignore'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
683 #ifdef HAVE_SANDBOX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
684 int cmod_did_sandbox; // set when "sandbox" was incremented
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
685 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
686 long cmod_verbose_save; // if 'verbose' was set: value of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
687 // p_verbose plus one
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
688 int cmod_save_msg_silent; // if non-zero: saved value of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
689 // msg_silent + 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
690 int cmod_save_msg_scroll; // for restoring msg_scroll
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
691 int cmod_did_esilent; // incremented when emsg_silent is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
692 } cmdmod_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
693
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
694 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
695 MF_DIRTY_NO = 0, // no dirty blocks
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
696 MF_DIRTY_YES, // there are dirty blocks
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
697 MF_DIRTY_YES_NOSYNC, // there are dirty blocks, do not sync yet
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
698 } mfdirty_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
699
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
700 #define MF_SEED_LEN 8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
701
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
702 struct memfile
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
703 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
704 char_u *mf_fname; // name of the file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
705 char_u *mf_ffname; // idem, full path
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
706 int mf_fd; // file descriptor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
707 int mf_flags; // flags used when opening this memfile
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
708 int mf_reopen; // mf_fd was closed, retry opening
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
709 bhdr_T *mf_free_first; // first block_hdr in free list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
710 bhdr_T *mf_used_first; // mru block_hdr in used list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
711 bhdr_T *mf_used_last; // lru block_hdr in used list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
712 unsigned mf_used_count; // number of pages in used list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
713 unsigned mf_used_count_max; // maximum number of pages in memory
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
714 mf_hashtab_T mf_hash; // hash lists
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
715 mf_hashtab_T mf_trans; // trans lists
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
716 blocknr_T mf_blocknr_max; // highest positive block number + 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
717 blocknr_T mf_blocknr_min; // lowest negative block number - 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
718 blocknr_T mf_neg_count; // number of negative blocks numbers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
719 blocknr_T mf_infile_count; // number of pages in the file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
720 unsigned mf_page_size; // number of bytes in a page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
721 mfdirty_T mf_dirty;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
722 #ifdef FEAT_CRYPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
723 buf_T *mf_buffer; // buffer this memfile is for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
724 char_u mf_seed[MF_SEED_LEN]; // seed for encryption
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
725
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
726 // Values for key, method and seed used for reading data blocks when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
727 // updating for a newly set key or method. Only when mf_old_key != NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
728 char_u *mf_old_key;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
729 int mf_old_cm;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
730 char_u mf_old_seed[MF_SEED_LEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
731 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
732 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
733
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
734 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
735 * things used in memline.c
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
736 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
737 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
738 * When searching for a specific line, we remember what blocks in the tree
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
739 * are the branches leading to that block. This is stored in ml_stack. Each
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
740 * entry is a pointer to info in a block (may be data block or pointer block)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
741 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
742 typedef struct info_pointer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
743 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
744 blocknr_T ip_bnum; // block number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
745 linenr_T ip_low; // lowest lnum in this block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
746 linenr_T ip_high; // highest lnum in this block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
747 int ip_index; // index for block with current lnum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
748 } infoptr_T; // block/index pair
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
749
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
750 #ifdef FEAT_BYTEOFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
751 typedef struct ml_chunksize
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
752 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
753 int mlcs_numlines;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
754 long mlcs_totalsize;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
755 } chunksize_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
756
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
757 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
758 * Flags when calling ml_updatechunk()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
759 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
760 # define ML_CHNK_ADDLINE 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
761 # define ML_CHNK_DELLINE 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
762 # define ML_CHNK_UPDLINE 3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
763 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
764
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
765 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
766 * the memline structure holds all the information about a memline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
767 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
768 typedef struct memline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
769 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
770 linenr_T ml_line_count; // number of lines in the buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
771
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
772 memfile_T *ml_mfp; // pointer to associated memfile
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
773
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
774 infoptr_T *ml_stack; // stack of pointer blocks (array of IPTRs)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
775 int ml_stack_top; // current top of ml_stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
776 int ml_stack_size; // total number of entries in ml_stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
777
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
778 #define ML_EMPTY 0x01 // empty buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
779 #define ML_LINE_DIRTY 0x02 // cached line was changed and allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
780 #define ML_LOCKED_DIRTY 0x04 // ml_locked was changed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
781 #define ML_LOCKED_POS 0x08 // ml_locked needs positive block number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
782 #define ML_ALLOCATED 0x10 // ml_line_ptr is an allocated copy
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
783 int ml_flags;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
784
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
785 colnr_T ml_line_len; // length of the cached line, including NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
786 linenr_T ml_line_lnum; // line number of cached line, 0 if not valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
787 char_u *ml_line_ptr; // pointer to cached line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
788
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
789 bhdr_T *ml_locked; // block used by last ml_get
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
790 linenr_T ml_locked_low; // first line in ml_locked
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
791 linenr_T ml_locked_high; // last line in ml_locked
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
792 int ml_locked_lineadd; // number of lines inserted in ml_locked
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
793 #ifdef FEAT_BYTEOFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
794 chunksize_T *ml_chunksize;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
795 int ml_numchunks;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
796 int ml_usedchunks;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
797 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
798 } memline_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
799
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
800 // Values for the flags argument of ml_delete_flags().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
801 #define ML_DEL_MESSAGE 1 // may give a "No lines in buffer" message
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
802 #define ML_DEL_UNDO 2 // called from undo, do not update textprops
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
803 #define ML_DEL_NOPROP 4 // splitting data block, do not update textprops
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
804
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
805 // Values for the flags argument of ml_append_int().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
806 #define ML_APPEND_NEW 1 // starting to edit a new file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
807 #define ML_APPEND_MARK 2 // mark the new line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
808 #define ML_APPEND_UNDO 4 // called from undo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
809 #define ML_APPEND_NOPROP 8 // do not continue textprop from previous line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
810
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
811
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
812 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
813 * Structure defining text properties. These stick with the text.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
814 * When stored in memline they are after the text, ml_line_len is larger than
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
815 * STRLEN(ml_line_ptr) + 1.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
816 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
817 typedef struct textprop_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
818 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
819 colnr_T tp_col; // start column (one based, in bytes)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
820 colnr_T tp_len; // length in bytes, when tp_id is negative used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
821 // for left padding plus one
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
822 int tp_id; // identifier
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
823 int tp_type; // property type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
824 int tp_flags; // TP_FLAG_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
825 } textprop_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
826
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
827 #define TP_FLAG_CONT_NEXT 0x1 // property continues in next line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
828 #define TP_FLAG_CONT_PREV 0x2 // property was continued from prev line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
829
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
830 // without these text is placed after the end of the line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
831 #define TP_FLAG_ALIGN_RIGHT 0x010 // virtual text is right-aligned
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
832 #define TP_FLAG_ALIGN_ABOVE 0x020 // virtual text above the line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
833 #define TP_FLAG_ALIGN_BELOW 0x040 // virtual text on next screen line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
834
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
835 #define TP_FLAG_WRAP 0x080 // virtual text wraps - when missing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
836 // text is truncated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
837 #define TP_FLAG_START_INCL 0x100 // "start_incl" copied from proptype
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
838
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
839 #define PROP_TEXT_MIN_CELLS 4 // minimum number of cells to use for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
840 // the text, even when truncating
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
841
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
842 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
843 * Structure defining a property type.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
844 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
845 typedef struct proptype_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
846 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
847 int pt_id; // value used for tp_id
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
848 int pt_type; // number used for tp_type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
849 int pt_hl_id; // highlighting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
850 int pt_priority; // priority
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
851 int pt_flags; // PT_FLAG_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
852 char_u pt_name[1]; // property type name, actually longer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
853 } proptype_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
854
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
855 #define PT_FLAG_INS_START_INCL 1 // insert at start included in property
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
856 #define PT_FLAG_INS_END_INCL 2 // insert at end included in property
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
857 #define PT_FLAG_COMBINE 4 // combine with syntax highlight
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
858 #define PT_FLAG_OVERRIDE 8 // override any highlight
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
859
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
860 // Sign group
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
861 typedef struct signgroup_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
862 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
863 int sg_next_sign_id; // next sign id for this group
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
864 short_u sg_refcount; // number of signs in this group
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
865 char_u sg_name[1]; // sign group name, actually longer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
866 } signgroup_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
867
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
868 typedef struct sign_entry sign_entry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
869 struct sign_entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
870 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
871 int se_id; // unique identifier for each placed sign
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
872 int se_typenr; // typenr of sign
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
873 int se_priority; // priority for highlighting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
874 linenr_T se_lnum; // line number which has this sign
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
875 signgroup_T *se_group; // sign group
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
876 sign_entry_T *se_next; // next entry in a list of signs
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
877 sign_entry_T *se_prev; // previous entry -- for easy reordering
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
878 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
879
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
880 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
881 * Sign attributes. Used by the screen refresh routines.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
882 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
883 typedef struct sign_attrs_S {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
884 int sat_typenr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
885 void *sat_icon;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
886 char_u *sat_text;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
887 int sat_texthl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
888 int sat_linehl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
889 int sat_culhl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
890 int sat_numhl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
891 int sat_priority;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
892 } sign_attrs_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
893
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
894 #if defined(FEAT_SIGNS) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
895 // Macros to get the sign group structure from the group name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
896 #define SGN_KEY_OFF offsetof(signgroup_T, sg_name)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
897 #define HI2SG(hi) ((signgroup_T *)((hi)->hi_key - SGN_KEY_OFF))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
898
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
899 // Default sign priority for highlighting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
900 #define SIGN_DEF_PRIO 10
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
901
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
902 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
903
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
904 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
905 * Argument list: Array of file names.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
906 * Used for the global argument list and the argument lists local to a window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
907 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
908 typedef struct arglist
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
909 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
910 garray_T al_ga; // growarray with the array of file names
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
911 int al_refcount; // number of windows using this arglist
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
912 int id; // id of this arglist
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
913 } alist_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
914
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
915 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
916 * For each argument remember the file name as it was given, and the buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
917 * number that contains the expanded file name (required for when ":cd" is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
918 * used).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
919 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
920 typedef struct argentry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
921 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
922 char_u *ae_fname; // file name as specified
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
923 int ae_fnum; // buffer number with expanded file name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
924 } aentry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
925
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
926 #define ALIST(win) (win)->w_alist
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
927 #define GARGLIST ((aentry_T *)global_alist.al_ga.ga_data)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
928 #define ARGLIST ((aentry_T *)ALIST(curwin)->al_ga.ga_data)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
929 #define WARGLIST(wp) ((aentry_T *)ALIST(wp)->al_ga.ga_data)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
930 #define AARGLIST(al) ((aentry_T *)((al)->al_ga.ga_data))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
931 #define GARGCOUNT (global_alist.al_ga.ga_len)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
932 #define ARGCOUNT (ALIST(curwin)->al_ga.ga_len)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
933 #define WARGCOUNT(wp) (ALIST(wp)->al_ga.ga_len)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
934
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
935 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
936 * A list used for saving values of "emsg_silent". Used by ex_try() to save the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
937 * value of "emsg_silent" if it was non-zero. When this is done, the CSF_SILENT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
938 * flag below is set.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
939 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
940
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
941 typedef struct eslist_elem eslist_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
942 struct eslist_elem
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
943 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
944 int saved_emsg_silent; // saved value of "emsg_silent"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
945 eslist_T *next; // next element on the list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
946 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
947
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
948 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
949 * For conditional commands a stack is kept of nested conditionals.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
950 * When cs_idx < 0, there is no conditional command.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
951 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
952 #define CSTACK_LEN 50
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
953
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
954 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
955 short cs_flags[CSTACK_LEN]; // CSF_ flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
956 char cs_pending[CSTACK_LEN]; // CSTP_: what's pending in ":finally"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
957 union {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
958 void *csp_rv[CSTACK_LEN]; // return typeval for pending return
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
959 void *csp_ex[CSTACK_LEN]; // exception for pending throw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
960 } cs_pend;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
961 void *cs_forinfo[CSTACK_LEN]; // info used by ":for"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
962 int cs_line[CSTACK_LEN]; // line nr of ":while"/":for" line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
963 int cs_block_id[CSTACK_LEN]; // block ID stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
964 int cs_script_var_len[CSTACK_LEN]; // value of sn_var_vals.ga_len
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
965 // when entering the block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
966 int cs_idx; // current entry, or -1 if none
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
967 int cs_looplevel; // nr of nested ":while"s and ":for"s
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
968 int cs_trylevel; // nr of nested ":try"s
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
969 eslist_T *cs_emsg_silent_list; // saved values of "emsg_silent"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
970 char cs_lflags; // loop flags: CSL_ flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
971 } cstack_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
972 # define cs_rettv cs_pend.csp_rv
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
973 # define cs_exception cs_pend.csp_ex
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
974
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
975 // There is no CSF_IF, the lack of CSF_WHILE, CSF_FOR and CSF_TRY means ":if"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
976 // was used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
977 # define CSF_TRUE 0x0001 // condition was TRUE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
978 # define CSF_ACTIVE 0x0002 // current state is active
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
979 # define CSF_ELSE 0x0004 // ":else" has been passed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
980 # define CSF_WHILE 0x0008 // is a ":while"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
981 # define CSF_FOR 0x0010 // is a ":for"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
982 # define CSF_BLOCK 0x0020 // is a "{" block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
983
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
984 # define CSF_TRY 0x0100 // is a ":try"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
985 # define CSF_FINALLY 0x0200 // ":finally" has been passed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
986 # define CSF_CATCH 0x0400 // ":catch" has been seen
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
987 # define CSF_THROWN 0x0800 // exception thrown to this try conditional
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
988 # define CSF_CAUGHT 0x1000 // exception caught by this try conditional
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
989 # define CSF_FINISHED 0x2000 // CSF_CAUGHT was handled by finish_exception()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
990 # define CSF_SILENT 0x4000 // "emsg_silent" reset by ":try"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
991 // Note that CSF_ELSE is only used when CSF_TRY and CSF_WHILE are unset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
992 // (an ":if"), and CSF_SILENT is only used when CSF_TRY is set.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
993
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
994 # define CSF_FUNC_DEF 0x8000 // a function was defined in this block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
995
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
996 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
997 * What's pending for being reactivated at the ":endtry" of this try
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
998 * conditional:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
999 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1000 # define CSTP_NONE 0 // nothing pending in ":finally" clause
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1001 # define CSTP_ERROR 1 // an error is pending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1002 # define CSTP_INTERRUPT 2 // an interrupt is pending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1003 # define CSTP_THROW 4 // a throw is pending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1004 # define CSTP_BREAK 8 // ":break" is pending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1005 # define CSTP_CONTINUE 16 // ":continue" is pending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1006 # define CSTP_RETURN 24 // ":return" is pending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1007 # define CSTP_FINISH 32 // ":finish" is pending
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1008
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1009 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1010 * Flags for the cs_lflags item in cstack_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1011 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1012 # define CSL_HAD_LOOP 1 // just found ":while" or ":for"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1013 # define CSL_HAD_ENDLOOP 2 // just found ":endwhile" or ":endfor"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1014 # define CSL_HAD_CONT 4 // just found ":continue"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1015 # define CSL_HAD_FINA 8 // just found ":finally"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1016
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1017 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1018 * A list of error messages that can be converted to an exception. "throw_msg"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1019 * is only set in the first element of the list. Usually, it points to the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1020 * original message stored in that element, but sometimes it points to a later
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1021 * message in the list. See cause_errthrow().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1022 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1023 typedef struct msglist msglist_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1024 struct msglist
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1025 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1026 msglist_T *next; // next of several messages in a row
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1027 char *msg; // original message, allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1028 char *throw_msg; // msg to throw: usually original one
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1029 char_u *sfile; // value from estack_sfile(), allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1030 long slnum; // line number for "sfile"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1031 int msg_compiling; // saved value of estack_compiling
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1032 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1033
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1034 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1035 * The exception types.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1036 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1037 typedef enum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1038 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1039 ET_USER, // exception caused by ":throw" command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1040 ET_ERROR, // error exception
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1041 ET_INTERRUPT, // interrupt exception triggered by Ctrl-C
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1042 } except_type_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1043
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1044 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1045 * Structure describing an exception.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1046 * (don't use "struct exception", it's used by the math library).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1047 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1048 typedef struct vim_exception except_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1049 struct vim_exception
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1050 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1051 except_type_T type; // exception type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1052 char *value; // exception value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1053 struct msglist *messages; // message(s) causing error exception
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1054 char_u *throw_name; // name of the throw point
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1055 linenr_T throw_lnum; // line number of the throw point
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1056 except_T *caught; // next exception on the caught stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1057 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1058
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1059 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1060 * Structure to save the error/interrupt/exception state between calls to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1061 * enter_cleanup() and leave_cleanup(). Must be allocated as an automatic
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1062 * variable by the (common) caller of these functions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1063 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1064 typedef struct cleanup_stuff cleanup_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1065 struct cleanup_stuff
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1066 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1067 int pending; // error/interrupt/exception state
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1068 except_T *exception; // exception value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1069 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1070
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1071 #ifdef FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1072 // struct passed to in_id_list()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1073 struct sp_syn
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1074 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1075 int inc_tag; // ":syn include" unique tag
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1076 short id; // highlight group ID of item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1077 short *cont_in_list; // cont.in group IDs, if non-zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1078 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1079
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1080 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1081 * Each keyword has one keyentry, which is linked in a hash list.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1082 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1083 typedef struct keyentry keyentry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1084
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1085 struct keyentry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1086 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1087 keyentry_T *ke_next; // next entry with identical "keyword[]"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1088 struct sp_syn k_syn; // struct passed to in_id_list()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1089 short *next_list; // ID list for next match (if non-zero)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1090 int flags;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1091 int k_char; // conceal substitute character
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1092 char_u keyword[1]; // actually longer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1093 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1094
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1095 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1096 * Struct used to store one state of the state stack.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1097 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1098 typedef struct buf_state
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1099 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1100 int bs_idx; // index of pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1101 int bs_flags; // flags for pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1102 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1103 int bs_seqnr; // stores si_seqnr
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1104 int bs_cchar; // stores si_cchar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1105 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1106 reg_extmatch_T *bs_extmatch; // external matches from start pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1107 } bufstate_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1108
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1109 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1110 * syn_state contains the syntax state stack for the start of one line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1111 * Used by b_sst_array[].
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1112 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1113 typedef struct syn_state synstate_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1114
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1115 struct syn_state
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1116 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1117 synstate_T *sst_next; // next entry in used or free list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1118 linenr_T sst_lnum; // line number for this state
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1119 union
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1120 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1121 bufstate_T sst_stack[SST_FIX_STATES]; // short state stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1122 garray_T sst_ga; // growarray for long state stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1123 } sst_union;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1124 int sst_next_flags; // flags for sst_next_list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1125 int sst_stacksize; // number of states on the stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1126 short *sst_next_list; // "nextgroup" list in this state
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1127 // (this is a copy, don't free it!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1128 disptick_T sst_tick; // tick when last displayed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1129 linenr_T sst_change_lnum;// when non-zero, change in this line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1130 // may have made the state invalid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1131 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1132 #endif // FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1133
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1134 #define MAX_HL_ID 20000 // maximum value for a highlight ID.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1135
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1136 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1137 * Structure shared between syntax.c, screen.c and gui_x11.c.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1138 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1139 typedef struct attr_entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1140 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1141 short ae_attr; // HL_BOLD, etc.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1142 union
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1143 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1144 struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1145 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1146 char_u *start; // start escape sequence
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1147 char_u *stop; // stop escape sequence
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1148 } term;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1149 struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1150 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1151 // These colors need to be > 8 bits to hold 256.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1152 short_u fg_color; // foreground color number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1153 short_u bg_color; // background color number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1154 short_u ul_color; // underline color number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1155 # ifdef FEAT_TERMGUICOLORS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1156 guicolor_T fg_rgb; // foreground color RGB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1157 guicolor_T bg_rgb; // background color RGB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1158 guicolor_T ul_rgb; // underline color RGB
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1159 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1160 } cterm;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1161 # ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1162 struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1163 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1164 guicolor_T fg_color; // foreground color handle
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1165 guicolor_T bg_color; // background color handle
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1166 guicolor_T sp_color; // special color handle
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1167 GuiFont font; // font handle
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1168 # ifdef FEAT_XFONTSET
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1169 GuiFontset fontset; // fontset handle
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1170 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1171 } gui;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1172 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1173 } ae_u;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1174 } attrentry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1175
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1176 #ifdef USE_ICONV
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1177 # ifdef HAVE_ICONV_H
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1178 # include <iconv.h>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1179 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1180 # if defined(MACOS_X)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1181 # include <sys/errno.h>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1182 # ifndef EILSEQ
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1183 # define EILSEQ ENOENT // Early MacOS X does not have EILSEQ
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1184 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1185 typedef struct _iconv_t *iconv_t;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1186 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1187 # include <errno.h>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1188 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1189 typedef void *iconv_t;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1190 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1191 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1192
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1193 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1194 * Used for the typeahead buffer: typebuf.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1195 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1196 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1197 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1198 char_u *tb_buf; // buffer for typed characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1199 char_u *tb_noremap; // mapping flags for characters in tb_buf[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1200 int tb_buflen; // size of tb_buf[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1201 int tb_off; // current position in tb_buf[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1202 int tb_len; // number of valid bytes in tb_buf[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1203 int tb_maplen; // nr of mapped bytes in tb_buf[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1204 int tb_silent; // nr of silently mapped bytes in tb_buf[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1205 int tb_no_abbr_cnt; // nr of bytes without abbrev. in tb_buf[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1206 int tb_change_cnt; // nr of time tb_buf was changed; never zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1207 } typebuf_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1208
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1209 // Struct to hold the saved typeahead for save_typeahead().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1210 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1211 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1212 typebuf_T save_typebuf;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1213 int typebuf_valid; // TRUE when save_typebuf valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1214 int old_char;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1215 int old_mod_mask;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1216 buffheader_T save_readbuf1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1217 buffheader_T save_readbuf2;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1218 #ifdef USE_INPUT_BUF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1219 char_u *save_inputbuf;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1220 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1221 } tasave_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1222
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1223 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1224 * Used for conversion of terminal I/O and script files.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1225 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1226 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1227 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1228 int vc_type; // zero or one of the CONV_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1229 int vc_factor; // max. expansion factor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1230 # ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1231 int vc_cpfrom; // codepage to convert from (CONV_CODEPAGE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1232 int vc_cpto; // codepage to convert to (CONV_CODEPAGE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1233 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1234 # ifdef USE_ICONV
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1235 iconv_t vc_fd; // for CONV_ICONV
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1236 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1237 int vc_fail; // fail for invalid char, don't use '?'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1238 } vimconv_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1239
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1240 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1241 * Structure used for the command line history.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1242 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1243 typedef struct hist_entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1244 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1245 int hisnum; // identifying number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1246 int viminfo; // when TRUE hisstr comes from viminfo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1247 char_u *hisstr; // actual entry, separator char after the NUL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1248 time_t time_set; // when it was typed, zero if unknown
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1249 } histentry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1250
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1251 #define CONV_NONE 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1252 #define CONV_TO_UTF8 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1253 #define CONV_9_TO_UTF8 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1254 #define CONV_TO_LATIN1 3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1255 #define CONV_TO_LATIN9 4
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1256 #define CONV_ICONV 5
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1257 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1258 # define CONV_CODEPAGE 10 // codepage -> codepage
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1259 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1260 #ifdef MACOS_X
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1261 # define CONV_MAC_LATIN1 20
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1262 # define CONV_LATIN1_MAC 21
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1263 # define CONV_MAC_UTF8 22
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1264 # define CONV_UTF8_MAC 23
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1265 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1266
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1267 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1268 * Structure used for mappings and abbreviations.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1269 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1270 typedef struct mapblock mapblock_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1271 struct mapblock
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1272 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1273 mapblock_T *m_next; // next mapblock in list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1274 char_u *m_keys; // mapped from, lhs
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1275 char_u *m_str; // mapped to, rhs
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1276 char_u *m_orig_str; // rhs as entered by the user
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1277 int m_keylen; // strlen(m_keys)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1278 int m_mode; // valid mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1279 int m_simplified; // m_keys was simplified, do not use this map
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1280 // if key_protocol_enabled() returns TRUE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1281 int m_noremap; // if non-zero no re-mapping for m_str
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1282 char m_silent; // <silent> used, don't echo commands
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1283 char m_nowait; // <nowait> used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1284 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1285 char m_expr; // <expr> used, m_str is an expression
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1286 sctx_T m_script_ctx; // SCTX where map was defined
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1287 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1288 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1289
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1290
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1291 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1292 * Used for highlighting in the status line.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1293 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1294 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1295 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1296 char_u *start;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1297 int userhl; // 0: no HL, 1-9: User HL, < 0 for syn ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1298 } stl_hlrec_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1299
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1300
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1301 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1302 * Syntax items - usually buffer-specific.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1303 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1304
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1305 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1306 * Item for a hashtable. "hi_key" can be one of three values:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1307 * NULL: Never been used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1308 * HI_KEY_REMOVED: Entry was removed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1309 * Otherwise: Used item, pointer to the actual key; this usually is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1310 * inside the item, subtract an offset to locate the item.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1311 * This reduces the size of hashitem by 1/3.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1312 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1313 typedef struct hashitem_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1314 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1315 long_u hi_hash; // cached hash number of hi_key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1316 char_u *hi_key;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1317 } hashitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1318
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1319 // The address of "hash_removed" is used as a magic number for hi_key to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1320 // indicate a removed item.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1321 #define HI_KEY_REMOVED &hash_removed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1322 #define HASHITEM_EMPTY(hi) ((hi)->hi_key == NULL || (hi)->hi_key == &hash_removed)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1323
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1324 // Initial size for a hashtable. Our items are relatively small and growing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1325 // is expensive, thus use 16 as a start. Must be a power of 2.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1326 // This allows for storing 10 items (2/3 of 16) before a resize is needed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1327 #define HT_INIT_SIZE 16
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1328
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1329 // flags used for ht_flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1330 #define HTFLAGS_ERROR 0x01 // Set when growing failed, can't add more
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1331 // items before growing works.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1332 #define HTFLAGS_FROZEN 0x02 // Trying to add or remove an item will result
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1333 // in an error message.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1334
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1335 typedef struct hashtable_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1336 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1337 long_u ht_mask; // mask used for hash value (nr of items in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1338 // array is "ht_mask" + 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1339 long_u ht_used; // number of items used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1340 long_u ht_filled; // number of items used + removed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1341 int ht_changed; // incremented when adding or removing an item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1342 int ht_locked; // counter for hash_lock()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1343 int ht_flags; // HTFLAGS_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1344 hashitem_T *ht_array; // points to the array, allocated when it's
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1345 // not "ht_smallarray"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1346 hashitem_T ht_smallarray[HT_INIT_SIZE]; // initial array
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1347 } hashtab_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1348
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1349 typedef long_u hash_T; // Type for hi_hash
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1350
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1351
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1352 // Use 64-bit Number.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1353 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1354 # ifdef PROTO
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1355 // workaround for cproto that doesn't recognize __int64
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1356 typedef long varnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1357 typedef unsigned long uvarnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1358 # define VARNUM_MIN LONG_MIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1359 # define VARNUM_MAX LONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1360 # define UVARNUM_MAX ULONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1361 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1362 typedef __int64 varnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1363 typedef unsigned __int64 uvarnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1364 # define VARNUM_MIN _I64_MIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1365 # define VARNUM_MAX _I64_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1366 # define UVARNUM_MAX _UI64_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1367 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1368 #elif defined(HAVE_NO_LONG_LONG)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1369 # if defined(HAVE_STDINT_H)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1370 typedef int64_t varnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1371 typedef uint64_t uvarnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1372 # define VARNUM_MIN INT64_MIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1373 # define VARNUM_MAX INT64_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1374 # define UVARNUM_MAX UINT64_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1375 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1376 // this may cause trouble for code that depends on 64 bit ints
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1377 typedef long varnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1378 typedef unsigned long uvarnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1379 # define VARNUM_MIN LONG_MIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1380 # define VARNUM_MAX LONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1381 # define UVARNUM_MAX ULONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1382 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1383 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1384 typedef long long varnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1385 typedef unsigned long long uvarnumber_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1386 # ifdef LLONG_MIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1387 # define VARNUM_MIN LLONG_MIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1388 # define VARNUM_MAX LLONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1389 # define UVARNUM_MAX ULLONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1390 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1391 # define VARNUM_MIN LONG_LONG_MIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1392 # define VARNUM_MAX LONG_LONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1393 # define UVARNUM_MAX ULONG_LONG_MAX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1394 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1395 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1396
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1397 // On rare systems "char" is unsigned, sometimes we really want a signed 8-bit
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1398 // value.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1399 typedef signed char int8_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1400
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1401 typedef double float_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1402
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1403 typedef struct typval_S typval_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1404 typedef struct listvar_S list_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1405 typedef struct dictvar_S dict_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1406 typedef struct partial_S partial_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1407 typedef struct blobvar_S blob_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1408
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1409 // Struct that holds both a normal function name and a partial_T, as used for a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1410 // callback argument.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1411 // When used temporarily "cb_name" is not allocated. The refcounts to either
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1412 // the function or the partial are incremented and need to be decremented
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1413 // later with free_callback().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1414 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1415 char_u *cb_name;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1416 partial_T *cb_partial;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1417 int cb_free_name; // cb_name was allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1418 } callback_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1419
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1420 typedef struct isn_S isn_T; // instruction
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1421 typedef struct dfunc_S dfunc_T; // :def function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1422
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1423 typedef struct type_S type_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1424 typedef struct ufunc_S ufunc_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1425
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1426 typedef struct jobvar_S job_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1427 typedef struct readq_S readq_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1428 typedef struct writeq_S writeq_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1429 typedef struct jsonq_S jsonq_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1430 typedef struct cbq_S cbq_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1431 typedef struct channel_S channel_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1432 typedef struct cctx_S cctx_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1433 typedef struct ectx_S ectx_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1434 typedef struct instr_S instr_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1435 typedef struct class_S class_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1436 typedef struct object_S object_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1437
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1438 typedef enum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1439 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1440 VAR_UNKNOWN = 0, // not set, any type or "void" allowed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1441 VAR_ANY, // used for "any" type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1442 VAR_VOID, // no value (function not returning anything)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1443 VAR_BOOL, // "v_number" is used: VVAL_TRUE or VVAL_FALSE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1444 VAR_SPECIAL, // "v_number" is used: VVAL_NULL or VVAL_NONE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1445 VAR_NUMBER, // "v_number" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1446 VAR_FLOAT, // "v_float" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1447 VAR_STRING, // "v_string" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1448 VAR_BLOB, // "v_blob" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1449 VAR_FUNC, // "v_string" is function name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1450 VAR_PARTIAL, // "v_partial" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1451 VAR_LIST, // "v_list" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1452 VAR_DICT, // "v_dict" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1453 VAR_JOB, // "v_job" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1454 VAR_CHANNEL, // "v_channel" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1455 VAR_INSTR, // "v_instr" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1456 VAR_CLASS, // "v_class" is used (also used for interface)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1457 VAR_OBJECT, // "v_object" is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1458 } vartype_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1459
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1460 // A type specification.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1461 struct type_S {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1462 vartype_T tt_type;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1463 int8_T tt_argcount; // for func, incl. vararg, -1 for unknown
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1464 int8_T tt_min_argcount; // number of non-optional arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1465 char_u tt_flags; // TTFLAG_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1466 type_T *tt_member; // for list, dict, func return type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1467 class_T *tt_class; // for class and object
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1468 type_T **tt_args; // func argument types, allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1469 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1470
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1471 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1472 type_T *type_curr; // current type, value type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1473 type_T *type_decl; // declared type or equal to type_current
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1474 } type2_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1475
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1476 #define TTFLAG_VARARGS 0x01 // func args ends with "..."
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1477 #define TTFLAG_BOOL_OK 0x02 // can be converted to bool
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1478 #define TTFLAG_FLOAT_OK 0x04 // number can be used/converted to float
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1479 #define TTFLAG_NUMBER_OK 0x08 // number can be used for a float
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1480 #define TTFLAG_STATIC 0x10 // one of the static types, e.g. t_any
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1481 #define TTFLAG_CONST 0x20 // cannot be changed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1482 #define TTFLAG_SUPER 0x40 // object from "super".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1483
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1484 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1485 VIM_ACCESS_PRIVATE, // read/write only inside th class
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1486 VIM_ACCESS_READ, // read everywhere, write only inside th class
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1487 VIM_ACCESS_ALL // read/write everywhere
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1488 } omacc_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1489
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1490 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1491 * Entry for an object or class member variable.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1492 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1493 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1494 char_u *ocm_name; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1495 omacc_T ocm_access;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1496 type_T *ocm_type;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1497 char_u *ocm_init; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1498 } ocmember_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1499
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1500 // used for the lookup table of a class member index and object method index
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1501 typedef struct itf2class_S itf2class_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1502 struct itf2class_S {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1503 itf2class_T *i2c_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1504 class_T *i2c_class;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1505 int i2c_is_method; // TRUE for method indexes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1506 // array with ints follows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1507 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1508
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1509 #define CLASS_INTERFACE 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1510 #define CLASS_EXTENDED 2 // another class extends this one
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1511
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1512 // "class_T": used for v_class of typval of VAR_CLASS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1513 // Also used for an interface (class_flags has CLASS_INTERFACE).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1514 struct class_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1515 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1516 char_u *class_name; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1517 int class_flags; // CLASS_ flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1518
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1519 int class_refcount;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1520 int class_copyID; // used by garbage collection
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1521
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1522 class_T *class_extends; // parent class or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1523
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1524 // interfaces declared for the class
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1525 int class_interface_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1526 char_u **class_interfaces; // allocated array of names
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1527 class_T **class_interfaces_cl; // interfaces (counts as reference)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1528 itf2class_T *class_itf2class; // member index lookup tables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1529
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1530 // class members: "static varname"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1531 int class_class_member_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1532 ocmember_T *class_class_members; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1533 typval_T *class_members_tv; // allocated array of class member vals
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1534
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1535 // class functions: "static def SomeMethod()"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1536 int class_class_function_count; // total count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1537 int class_class_function_count_child; // count without "extends"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1538 ufunc_T **class_class_functions; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1539
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1540 // object members: "this.varname"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1541 int class_obj_member_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1542 ocmember_T *class_obj_members; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1543
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1544 // object methods: "def SomeMethod()"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1545 int class_obj_method_count; // total count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1546 int class_obj_method_count_child; // count without "extends"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1547 ufunc_T **class_obj_methods; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1548
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1549 garray_T class_type_list; // used for type pointers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1550 type_T class_type; // type used for the class
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1551 type_T class_object_type; // same as class_type but VAR_OBJECT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1552 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1553
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1554 // Used for v_object of typval of VAR_OBJECT.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1555 // The member variables follow in an array of typval_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1556 struct object_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1557 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1558 class_T *obj_class; // class this object is created for;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1559 // pointer adds to class_refcount
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1560 int obj_refcount;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1561
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1562 object_T *obj_next_used; // for list headed by "first_object"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1563 object_T *obj_prev_used; // for list headed by "first_object"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1564 int obj_copyID; // used by garbage collection
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1565 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1566
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1567 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1568 * Structure to hold an internal variable without a name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1569 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1570 struct typval_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1571 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1572 vartype_T v_type;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1573 char v_lock; // see below: VAR_LOCKED, VAR_FIXED
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1574 union
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1575 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1576 varnumber_T v_number; // number value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1577 float_T v_float; // floating point number value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1578 char_u *v_string; // string value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1579 list_T *v_list; // list value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1580 dict_T *v_dict; // dict value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1581 partial_T *v_partial; // closure: function with args
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1582 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1583 job_T *v_job; // job value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1584 channel_T *v_channel; // channel value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1585 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1586 blob_T *v_blob; // blob value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1587 instr_T *v_instr; // instructions to execute
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1588 class_T *v_class; // class value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1589 object_T *v_object; // object value (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1590 } vval;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1591 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1592
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1593 // Values for "dv_scope".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1594 #define VAR_SCOPE 1 // a:, v:, s:, etc. scope dictionaries
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1595 #define VAR_DEF_SCOPE 2 // l:, g: scope dictionaries: here funcrefs are not
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1596 // allowed to mask existing functions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1597
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1598 // Values for "v_lock".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1599 #define VAR_LOCKED 1 // locked with lock(), can use unlock()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1600 #define VAR_FIXED 2 // locked forever
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1601 #define VAR_ITEMS_LOCKED 4 // items of non-materialized list locked
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1602
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1603 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1604 * Structure to hold an item of a list: an internal variable without a name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1605 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1606 typedef struct listitem_S listitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1607
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1608 struct listitem_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1609 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1610 listitem_T *li_next; // next item in list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1611 listitem_T *li_prev; // previous item in list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1612 typval_T li_tv; // type and value of the variable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1613 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1614
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1615 // Struct used by those that are using an item in a list.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1616 typedef struct listwatch_S listwatch_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1617
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1618 struct listwatch_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1619 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1620 listitem_T *lw_item; // item being watched
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1621 listwatch_T *lw_next; // next watcher
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1622 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1623
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1624 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1625 * Structure to hold info about a list.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1626 * Order of members is optimized to reduce padding.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1627 * When created by range() it will at first have special value:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1628 * lv_first == &range_list_item;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1629 * and use lv_start, lv_end, lv_stride.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1630 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1631 struct listvar_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1632 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1633 listitem_T *lv_first; // first item, NULL if none, &range_list_item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1634 // for a non-materialized list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1635 listwatch_T *lv_watch; // first watcher, NULL if none
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1636 union {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1637 struct { // used for non-materialized range list:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1638 // "lv_first" is &range_list_item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1639 varnumber_T lv_start;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1640 varnumber_T lv_end;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1641 int lv_stride;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1642 } nonmat;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1643 struct { // used for materialized list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1644 listitem_T *lv_last; // last item, NULL if none
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1645 listitem_T *lv_idx_item; // when not NULL item at index "lv_idx"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1646 int lv_idx; // cached index of an item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1647 } mat;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1648 } lv_u;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1649 type_T *lv_type; // current type, allocated by alloc_type()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1650 list_T *lv_copylist; // copied list used by deepcopy()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1651 list_T *lv_used_next; // next list in used lists list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1652 list_T *lv_used_prev; // previous list in used lists list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1653 int lv_refcount; // reference count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1654 int lv_len; // number of items
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1655 int lv_with_items; // number of items following this struct that
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1656 // should not be freed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1657 int lv_copyID; // ID used by deepcopy()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1658 char lv_lock; // zero, VAR_LOCKED, VAR_FIXED
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1659 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1660
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1661 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1662 * Static list with 10 items. Use init_static_list() to initialize.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1663 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1664 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1665 list_T sl_list; // must be first
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1666 listitem_T sl_items[10];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1667 } staticList10_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1668
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1669 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1670 * Structure to hold an item of a Dictionary.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1671 * Also used for a variable.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1672 * The key is copied into "di_key" to avoid an extra alloc/free for it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1673 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1674 struct dictitem_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1675 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1676 typval_T di_tv; // type and value of the variable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1677 char_u di_flags; // DI_FLAGS_ flags (only used for variable)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1678 char_u di_key[1]; // key (actually longer!)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1679 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1680 typedef struct dictitem_S dictitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1681
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1682 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1683 * A dictitem with a 16 character key (plus NUL). This is an efficient way to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1684 * have a fixed-size dictitem.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1685 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1686 #define DICTITEM16_KEY_LEN 16
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1687 struct dictitem16_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1688 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1689 typval_T di_tv; // type and value of the variable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1690 char_u di_flags; // DI_FLAGS_ flags (only used for variable)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1691 char_u di_key[DICTITEM16_KEY_LEN + 1]; // key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1692 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1693 typedef struct dictitem16_S dictitem16_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1694
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1695 // Flags for "di_flags"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1696 #define DI_FLAGS_RO 0x01 // read-only variable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1697 #define DI_FLAGS_RO_SBX 0x02 // read-only in the sandbox
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1698 #define DI_FLAGS_FIX 0x04 // fixed: no :unlet or remove()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1699 #define DI_FLAGS_LOCK 0x08 // locked variable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1700 #define DI_FLAGS_ALLOC 0x10 // separately allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1701 #define DI_FLAGS_RELOAD 0x20 // set when script sourced again
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1702
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1703 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1704 * Structure to hold info about a Dictionary.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1705 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1706 struct dictvar_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1707 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1708 char dv_lock; // zero, VAR_LOCKED, VAR_FIXED
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1709 char dv_scope; // zero, VAR_SCOPE, VAR_DEF_SCOPE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1710 int dv_refcount; // reference count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1711 int dv_copyID; // ID used by deepcopy()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1712 hashtab_T dv_hashtab; // hashtab that refers to the items
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1713 type_T *dv_type; // current type, allocated by alloc_type()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1714 dict_T *dv_copydict; // copied dict used by deepcopy()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1715 dict_T *dv_used_next; // next dict in used dicts list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1716 dict_T *dv_used_prev; // previous dict in used dicts list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1717 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1718
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1719 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1720 * Structure to hold info about a blob.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1721 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1722 struct blobvar_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1723 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1724 garray_T bv_ga; // growarray with the data
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1725 int bv_refcount; // reference count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1726 char bv_lock; // zero, VAR_LOCKED, VAR_FIXED
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1727 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1728
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1729 typedef int (*cfunc_T)(int argcount, typval_T *argvars, typval_T *rettv, void *state);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1730 typedef void (*cfunc_free_T)(void *state);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1731
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1732 // type of getline() last argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1733 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1734 GETLINE_NONE, // do not concatenate any lines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1735 GETLINE_CONCAT_CONT, // concatenate continuation lines with backslash
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1736 GETLINE_CONCAT_CONTBAR, // concatenate continuation lines with \ and |
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1737 GETLINE_CONCAT_ALL // concatenate continuation and Vim9 # comment lines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1738 } getline_opt_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1739
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1740 typedef struct svar_S svar_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1741
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1742 #if defined(FEAT_EVAL) || defined(PROTO)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1743 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1744 * Info used by a ":for" loop.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1745 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1746 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1747 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1748 int fi_semicolon; // TRUE if ending in '; var]'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1749 int fi_varcount; // nr of variables in [] or zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1750 int fi_break_count; // nr of line breaks encountered
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1751 listwatch_T fi_lw; // keep an eye on the item used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1752 list_T *fi_list; // list being used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1753 int fi_bi; // index of blob
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1754 blob_T *fi_blob; // blob being used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1755 char_u *fi_string; // copy of string being used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1756 int fi_byte_idx; // byte index in fi_string
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1757 int fi_cs_flags; // cs_flags or'ed together
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1758 } forinfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1759
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1760 typedef struct funccall_S funccall_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1761
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1762 // values used for "uf_def_status"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1763 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1764 UF_NOT_COMPILED, // executed with interpreter
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1765 UF_TO_BE_COMPILED, // to be compiled before execution
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1766 UF_COMPILING, // in compile_def_function()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1767 UF_COMPILED, // successfully compiled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1768 UF_COMPILE_ERROR // compilation error, cannot execute
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1769 } def_status_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1770
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1771 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1772 * Structure to hold info for a user function.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1773 * When adding a field check copy_lambda_to_global_func().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1774 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1775 struct ufunc_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1776 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1777 int uf_varargs; // variable nr of arguments (old style)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1778 int uf_flags; // FC_ flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1779 int uf_calls; // nr of active calls
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1780 int uf_cleared; // func_clear() was already called
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1781 def_status_T uf_def_status; // UF_NOT_COMPILED, UF_TO_BE_COMPILED, etc.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1782 int uf_dfunc_idx; // only valid if uf_def_status is UF_COMPILED
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1783
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1784 class_T *uf_class; // for object method and constructor; does not
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1785 // count for class_refcount
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1786
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1787 garray_T uf_args; // arguments, including optional arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1788 garray_T uf_def_args; // default argument expressions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1789 int uf_args_visible; // normally uf_args.ga_len, less when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1790 // compiling default argument expression.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1791
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1792 // for :def (for :function uf_ret_type is NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1793 type_T **uf_arg_types; // argument types (count == uf_args.ga_len)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1794 type_T *uf_ret_type; // return type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1795 garray_T uf_type_list; // types used in arg and return types
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1796 partial_T *uf_partial; // for closure created inside :def function:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1797 // information about the context
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1798
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1799 char_u *uf_va_name; // name from "...name" or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1800 type_T *uf_va_type; // type from "...name: type" or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1801 type_T *uf_func_type; // type of the function, &t_func_any if unknown
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1802 int uf_block_depth; // nr of entries in uf_block_ids
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1803 int *uf_block_ids; // blocks a :def function is defined inside
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1804 # if defined(FEAT_LUA)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1805 cfunc_T uf_cb; // callback function for cfunc
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1806 cfunc_free_T uf_cb_free; // callback function to free cfunc
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1807 void *uf_cb_state; // state of uf_cb
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1808 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1809
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1810 garray_T uf_lines; // function lines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1811
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1812 int uf_debug_tick; // when last checked for a breakpoint in this
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1813 // function.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1814 int uf_has_breakpoint; // TRUE when a breakpoint has been set in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1815 // this function.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1816 # ifdef FEAT_PROFILE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1817 int uf_profiling; // TRUE when func is being profiled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1818 int uf_prof_initialized;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1819 // profiling the function as a whole
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1820 int uf_tm_count; // nr of calls
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1821 proftime_T uf_tm_total; // time spent in function + children
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1822 proftime_T uf_tm_self; // time spent in function itself
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1823 proftime_T uf_tm_children; // time spent in children this call
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1824 // profiling the function per line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1825 int *uf_tml_count; // nr of times line was executed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1826 proftime_T *uf_tml_total; // time spent in a line + children
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1827 proftime_T *uf_tml_self; // time spent in a line itself
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1828 proftime_T uf_tml_start; // start time for current line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1829 proftime_T uf_tml_children; // time spent in children for this line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1830 proftime_T uf_tml_wait; // start wait time for current line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1831 int uf_tml_idx; // index of line being timed; -1 if none
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1832 int uf_tml_execed; // line being timed was executed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1833 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1834 sctx_T uf_script_ctx; // SCTX where function was defined,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1835 // used for s: variables; sc_version changed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1836 // for :function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1837 int uf_script_ctx_version; // original sc_version of SCTX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1838 int uf_refcount; // reference count, see func_name_refcount()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1839
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1840 funccall_T *uf_scoped; // l: local variables for closure
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1841
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1842 char_u *uf_name_exp; // if "uf_name[]" starts with SNR the name with
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1843 // "<SNR>" as a string, otherwise NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1844 char_u uf_name[4]; // name of function (actual size equals name);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1845 // can start with <SNR>123_ (<SNR> is K_SPECIAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1846 // KS_EXTRA KE_SNR)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1847 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1848
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1849 // flags used in uf_flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1850 #define FC_ABORT 0x01 // abort function on error
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1851 #define FC_RANGE 0x02 // function accepts range
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1852 #define FC_DICT 0x04 // Dict function, uses "self"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1853 #define FC_CLOSURE 0x08 // closure, uses outer scope variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1854 #define FC_DELETED 0x10 // :delfunction used while uf_refcount > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1855 #define FC_REMOVED 0x20 // function redefined while uf_refcount > 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1856 #define FC_SANDBOX 0x40 // function defined in the sandbox
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1857 #define FC_DEAD 0x80 // function kept only for reference to dfunc
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1858 #define FC_EXPORT 0x100 // "export def Func()"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1859 #define FC_NOARGS 0x200 // no a: variables in lambda
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1860 #define FC_VIM9 0x400 // defined in vim9 script file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1861 #define FC_CFUNC 0x800 // defined as Lua C func
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1862 #define FC_COPY 0x1000 // copy of another function by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1863 // copy_lambda_to_global_func()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1864 #define FC_LAMBDA 0x2000 // one line "return {expr}"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1865
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1866 #define FC_OBJECT 0x4000 // object method
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1867 #define FC_NEW 0x8000 // constructor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1868
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1869 #define MAX_FUNC_ARGS 20 // maximum number of function arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1870 #define VAR_SHORT_LEN 20 // short variable name length
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1871 #define FIXVAR_CNT 12 // number of fixed variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1872
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1873 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1874 * Structure to hold info for a function that is currently being executed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1875 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1876 struct funccall_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1877 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1878 ufunc_T *fc_func; // function being called
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1879 int fc_linenr; // next line to be executed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1880 int fc_returned; // ":return" used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1881 struct // fixed variables for arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1882 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1883 dictitem_T var; // variable (without room for name)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1884 char_u room[VAR_SHORT_LEN]; // room for the name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1885 } fc_fixvar[FIXVAR_CNT];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1886 dict_T fc_l_vars; // l: local function variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1887 dictitem_T fc_l_vars_var; // variable for l: scope
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1888 dict_T fc_l_avars; // a: argument variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1889 dictitem_T fc_l_avars_var; // variable for a: scope
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1890 list_T fc_l_varlist; // list for a:000
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1891 listitem_T fc_l_listitems[MAX_FUNC_ARGS]; // listitems for a:000
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1892 typval_T *fc_rettv; // return value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1893 linenr_T fc_breakpoint; // next line with breakpoint or zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1894 int fc_dbg_tick; // debug_tick when breakpoint was set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1895 int fc_level; // top nesting level of executed function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1896
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1897 garray_T fc_defer; // functions to be called on return
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1898 ectx_T *fc_ectx; // execution context for :def function, NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1899 // otherwise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1900
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1901 #ifdef FEAT_PROFILE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1902 proftime_T fc_prof_child; // time spent in a child
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1903 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1904 funccall_T *fc_caller; // calling function or NULL; or next funccal in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1905 // list pointed to by previous_funccal.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1906
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1907 // for closure
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1908 int fc_refcount; // number of user functions that reference this
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1909 // funccal
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1910 int fc_copyID; // for garbage collection
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1911 garray_T fc_ufuncs; // list of ufunc_T* which keep a reference to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1912 // "fc_func"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1913 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1914
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1915 // structure used as item in "fc_defer"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1916 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1917 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1918 char_u *dr_name; // function name, allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1919 typval_T dr_argvars[MAX_FUNC_ARGS + 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1920 int dr_argcount;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1921 } defer_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1922
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1923 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1924 * Struct used by trans_function_name()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1925 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1926 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1927 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1928 dict_T *fd_dict; // Dictionary used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1929 char_u *fd_newkey; // new key in "dict" in allocated memory
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1930 dictitem_T *fd_di; // Dictionary item used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1931 } funcdict_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1932
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1933 typedef struct funccal_entry funccal_entry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1934 struct funccal_entry {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1935 void *top_funccal;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1936 funccal_entry_T *next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1937 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1938
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1939 // From user function to hashitem and back.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1940 #define UF2HIKEY(fp) ((fp)->uf_name)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1941 #define HIKEY2UF(p) ((ufunc_T *)((p) - offsetof(ufunc_T, uf_name)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1942 #define HI2UF(hi) HIKEY2UF((hi)->hi_key)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1943
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1944 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1945 * Holds the hashtab with variables local to each sourced script.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1946 * Each item holds a variable (nameless) that points to the dict_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1947 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1948 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1949 dictitem_T sv_var;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1950 dict_T sv_dict;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1951 } scriptvar_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1952
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1953 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1954 * Entry for "sn_all_vars". Contains the s: variables from sn_vars plus the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1955 * block-local ones.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1956 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1957 typedef struct sallvar_S sallvar_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1958 struct sallvar_S {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1959 sallvar_T *sav_next; // var with same name but different block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1960 int sav_block_id; // block ID where declared
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1961 int sav_var_vals_idx; // index in sn_var_vals
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1962
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1963 // So long as the variable is valid (block it was defined in is still
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1964 // active) "sav_di" is used. It is set to NULL when leaving the block,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1965 // then sav_tv and sav_flags are used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1966 dictitem_T *sav_di; // dictitem with di_key and di_tv
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1967 typval_T sav_tv; // type and value of the variable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1968 char_u sav_flags; // DI_FLAGS_ flags (only used for variable)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1969 char_u sav_key[1]; // key (actually longer!)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1970 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1971
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1972 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1973 * In the sn_all_vars hashtab item "hi_key" points to "sav_key" in a sallvar_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1974 * This makes it possible to store and find the sallvar_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1975 * SAV2HIKEY() converts a sallvar_T pointer to a hashitem key pointer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1976 * HIKEY2SAV() converts a hashitem key pointer to a sallvar_T pointer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1977 * HI2SAV() converts a hashitem pointer to a sallvar_T pointer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1978 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1979 #define SAV2HIKEY(sav) ((sav)->sav_key)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1980 #define HIKEY2SAV(p) ((sallvar_T *)(p - offsetof(sallvar_T, sav_key)))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1981 #define HI2SAV(hi) HIKEY2SAV((hi)->hi_key)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1982
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1983 #define SVFLAG_TYPE_ALLOCATED 1 // call free_type() for "sv_type"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1984 #define SVFLAG_EXPORTED 2 // "export let var = val"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1985 #define SVFLAG_ASSIGNED 4 // assigned a value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1986
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1987 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1988 * Entry for "sn_var_vals". Used for script-local variables.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1989 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1990 struct svar_S {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1991 char_u *sv_name; // points into "sn_all_vars" di_key
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1992 typval_T *sv_tv; // points into "sn_vars" or "sn_all_vars" di_tv
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1993 type_T *sv_type;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1994 int sv_flags; // SVFLAG_ values above
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1995 int sv_const; // 0, ASSIGN_CONST or ASSIGN_FINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1996 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1997
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1998 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
1999 char_u *imp_name; // name imported as (allocated)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2000 scid_T imp_sid; // script ID of "from"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2001 int imp_flags; // IMP_FLAGS_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2002 } imported_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2003
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2004 #define IMP_FLAGS_RELOAD 2 // script reloaded, OK to redefine
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2005 #define IMP_FLAGS_AUTOLOAD 4 // script still needs to be loaded
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2006
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2007 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2008 * Info about an encountered script.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2009 * When sn_state has SN_STATE_NOT_LOADED, it has not been sourced yet.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2010 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2011 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2012 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2013 char_u *sn_name; // full path of script file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2014 int sn_script_seq; // latest sctx_T sc_seq value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2015
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2016 // When non-zero the script ID of the actually sourced script. Used if a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2017 // script is used by a name which has a symlink, we list both names, but
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2018 // only the linked-to script is actually sourced.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2019 int sn_sourced_sid;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2020
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2021 // "sn_vars" stores the s: variables currently valid. When leaving a block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2022 // variables local to that block are removed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2023 scriptvar_T *sn_vars;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2024
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2025 // Specific for a Vim9 script.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2026 // "sn_all_vars" stores all script variables ever declared. So long as the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2027 // variable is still valid the value is in "sn_vars->sv_dict...di_tv".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2028 // When the block of a declaration is left the value is moved to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2029 // "sn_all_vars..sav_tv".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2030 // Variables with duplicate names are possible, the sav_block_id must be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2031 // used to check that which variable is valid.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2032 dict_T sn_all_vars; // all script variables, dict of sallvar_T
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2033
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2034 // Stores the same variables as in "sn_all_vars" as a list of svar_T, so
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2035 // that they can be quickly found by index instead of a hash table lookup.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2036 // Also stores the type.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2037 garray_T sn_var_vals;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2038
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2039 garray_T sn_imports; // imported items, imported_T
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2040 garray_T sn_type_list; // keeps types used by variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2041 int sn_current_block_id; // ID for current block, 0 for outer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2042 int sn_last_block_id; // Unique ID for each script block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2043
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2044 int sn_version; // :scriptversion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2045 int sn_state; // SN_STATE_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2046 char_u *sn_save_cpo; // 'cpo' value when :vim9script found
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2047 char sn_is_vimrc; // .vimrc file, do not restore 'cpo'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2048
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2049 // for a Vim9 script under "rtp/autoload/" this is "dir#scriptname#"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2050 char_u *sn_autoload_prefix;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2051
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2052 // TRUE for a script used with "import autoload './dirname/script.vim'"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2053 // For "../autoload/script.vim" sn_autoload_prefix is also set.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2054 int sn_import_autoload;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2055
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2056 # ifdef FEAT_PROFILE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2057 int sn_prof_on; // TRUE when script is/was profiled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2058 int sn_pr_force; // forceit: profile functions in this script
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2059 proftime_T sn_pr_child; // time set when going into first child
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2060 int sn_pr_nest; // nesting for sn_pr_child
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2061 // profiling the script as a whole
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2062 int sn_pr_count; // nr of times sourced
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2063 proftime_T sn_pr_total; // time spent in script + children
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2064 proftime_T sn_pr_self; // time spent in script itself
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2065 proftime_T sn_pr_start; // time at script start
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2066 proftime_T sn_pr_children; // time in children after script start
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2067 // profiling the script per line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2068 garray_T sn_prl_ga; // things stored for every line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2069 proftime_T sn_prl_start; // start time for current line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2070 proftime_T sn_prl_children; // time spent in children for this line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2071 proftime_T sn_prl_wait; // wait start time for current line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2072 int sn_prl_idx; // index of line being timed; -1 if none
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2073 int sn_prl_execed; // line being timed was executed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2074 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2075 } scriptitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2076
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2077 #define SN_STATE_NEW 0 // newly loaded script, nothing done
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2078 #define SN_STATE_NOT_LOADED 1 // script located but not loaded
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2079 #define SN_STATE_RELOAD 2 // script loaded before, nothing done
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2080 #define SN_STATE_HAD_COMMAND 9 // a command was executed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2081
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2082 // Struct passed through eval() functions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2083 // See EVALARG_EVALUATE for a fixed value with eval_flags set to EVAL_EVALUATE.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2084 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2085 int eval_flags; // EVAL_ flag values below
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2086 int eval_break_count; // nr of line breaks consumed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2087
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2088 // copied from exarg_T when "getline" is "getsourceline". Can be NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2089 char_u *(*eval_getline)(int, void *, int, getline_opt_T);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2090 void *eval_cookie; // argument for eval_getline()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2091
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2092 // used when compiling a :def function, NULL otherwise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2093 cctx_T *eval_cctx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2094
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2095 // used when executing commands from a script, NULL otherwise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2096 cstack_T *eval_cstack;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2097
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2098 // Used to collect lines while parsing them, so that they can be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2099 // concatenated later. Used when "eval_ga.ga_itemsize" is not zero.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2100 // "eval_ga.ga_data" is a list of pointers to lines.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2101 // "eval_freega" list pointers that need to be freed after concatenating.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2102 garray_T eval_ga;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2103 garray_T eval_freega;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2104
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2105 // pointer to the last line obtained with getsourceline()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2106 char_u *eval_tofree;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2107
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2108 // array with lines of an inline function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2109 garray_T eval_tofree_ga;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2110
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2111 // set when "arg" points into the last entry of "eval_tofree_ga"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2112 int eval_using_cmdline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2113
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2114 // pointer to the lines concatenated for a lambda.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2115 char_u *eval_tofree_lambda;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2116 } evalarg_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2117
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2118 // Flag for expression evaluation.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2119 #define EVAL_EVALUATE 1 // when missing don't actually evaluate
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2120
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2121 # ifdef FEAT_PROFILE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2122 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2123 * Struct used in sn_prl_ga for every line of a script.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2124 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2125 typedef struct sn_prl_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2126 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2127 int snp_count; // nr of times line was executed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2128 proftime_T sn_prl_total; // time spent in a line + children
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2129 proftime_T sn_prl_self; // time spent in a line itself
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2130 } sn_prl_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2131
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2132 # define PRL_ITEM(si, idx) (((sn_prl_T *)(si)->sn_prl_ga.ga_data)[(idx)])
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2133
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2134 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2135 int pi_started_profiling;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2136 proftime_T pi_wait_start;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2137 proftime_T pi_call_start;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2138 } profinfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2139
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2140 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2141 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2142 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2143 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2144 } profinfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2145 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2146 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2147 // dummy typedefs for use in function prototypes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2148 struct ufunc_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2149 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2150 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2151 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2152 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2153 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2154 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2155 } funccall_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2156 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2157 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2158 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2159 } funcdict_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2160 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2161 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2162 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2163 } funccal_entry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2164 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2165 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2166 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2167 } scriptitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2168 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2169 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2170 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2171 } evalarg_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2172 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2173
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2174 // Struct passed between functions dealing with function call execution.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2175 //
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2176 // "fe_argv_func", when not NULL, can be used to fill in arguments only when the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2177 // invoked function uses them. It is called like this:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2178 // new_argcount = fe_argv_func(current_argcount, argv, partial_argcount,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2179 // called_func)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2180 //
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2181 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2182 int (* fe_argv_func)(int, typval_T *, int, ufunc_T *);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2183 linenr_T fe_firstline; // first line of range
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2184 linenr_T fe_lastline; // last line of range
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2185 int *fe_doesrange; // if not NULL: return: function handled range
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2186 int fe_evaluate; // actually evaluate expressions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2187 ufunc_T *fe_ufunc; // function to be called, when NULL lookup by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2188 // name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2189 partial_T *fe_partial; // for "dict" and extra arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2190 dict_T *fe_selfdict; // Dictionary for "self"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2191 object_T *fe_object; // object, e.g. for "this.Func()"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2192 typval_T *fe_basetv; // base for base->method()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2193 type_T *fe_check_type; // type from funcref or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2194 int fe_found_var; // if the function is not found then give an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2195 // error that a variable is not callable.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2196 } funcexe_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2197
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2198 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2199 * Structure to hold the context of a compiled function, used by closures
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2200 * defined in that function.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2201 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2202 typedef struct funcstack_S funcstack_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2203 struct funcstack_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2204 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2205 funcstack_T *fs_next; // linked list at "first_funcstack"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2206 funcstack_T *fs_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2207
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2208 garray_T fs_ga; // contains the stack, with:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2209 // - arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2210 // - frame
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2211 // - local variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2212 int fs_var_offset; // count of arguments + frame size == offset to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2213 // local variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2214
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2215 int fs_refcount; // nr of closures referencing this funcstack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2216 int fs_min_refcount; // nr of closures on this funcstack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2217 int fs_copyID; // for garbage collection
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2218 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2219
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2220 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2221 * Structure to hold the variables declared in a loop that are possibly used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2222 * in a closure.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2223 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2224 typedef struct loopvars_S loopvars_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2225 struct loopvars_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2226 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2227 loopvars_T *lvs_next; // linked list at "first_loopvars"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2228 loopvars_T *lvs_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2229
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2230 garray_T lvs_ga; // contains the variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2231 int lvs_refcount; // nr of closures referencing this loopvars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2232 int lvs_min_refcount; // nr of closures on this loopvars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2233 int lvs_copyID; // for garbage collection
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2234 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2235
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2236 // maximum nesting of :while and :for loops in a :def function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2237 #define MAX_LOOP_DEPTH 10
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2238
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2239 typedef struct outer_S outer_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2240 struct outer_S {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2241 garray_T *out_stack; // stack from outer scope, or a copy
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2242 // containing only arguments and local vars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2243 int out_frame_idx; // index of stack frame in out_stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2244 outer_T *out_up; // outer scope of outer scope or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2245 partial_T *out_up_partial; // partial owning out_up or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2246
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2247 struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2248 garray_T *stack; // stack from outer scope, or a copy
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2249 // containing only vars inside the loop
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2250 short var_idx; // first variable defined in a loop in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2251 // out_loop_stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2252 short var_count; // number of variables defined in a loop
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2253 } out_loop[MAX_LOOP_DEPTH];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2254 int out_loop_size; // nr of used entries in out_loop[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2255 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2256
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2257 struct partial_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2258 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2259 int pt_refcount; // reference count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2260 int pt_auto; // when TRUE the partial was created for using
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2261 // dict.member in handle_subscript()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2262 char_u *pt_name; // function name; when NULL use
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2263 // pt_func->uf_name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2264 ufunc_T *pt_func; // function pointer; when NULL lookup function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2265 // with pt_name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2266
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2267 // For a compiled closure: the arguments and local variables scope
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2268 outer_T pt_outer;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2269
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2270 // For a partial of a partial: use pt_outer values of this partial.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2271 partial_T *pt_outer_partial;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2272
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2273 funcstack_T *pt_funcstack; // copy of stack, used after context
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2274 // function returns
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2275 loopvars_T *(pt_loopvars[MAX_LOOP_DEPTH]);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2276 // copy of loop variables, used after loop
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2277 // block ends
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2278
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2279 typval_T *pt_argv; // arguments in allocated array
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2280 int pt_argc; // number of arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2281
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2282 int pt_copyID; // funcstack may contain pointer to partial
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2283 dict_T *pt_dict; // dict for "self"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2284 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2285
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2286 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2287 short lvi_depth; // current nested loop depth
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2288 struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2289 short var_idx; // index of first variable inside loop
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2290 short var_count; // number of variables inside loop
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2291 } lvi_loop[MAX_LOOP_DEPTH];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2292 } loopvarinfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2293
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2294 typedef struct AutoPatCmd_S AutoPatCmd_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2295
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2296 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2297 * Entry in the execution stack "exestack".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2298 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2299 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2300 ETYPE_TOP, // toplevel
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2301 ETYPE_SCRIPT, // sourcing script, use es_info.sctx
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2302 ETYPE_UFUNC, // user function, use es_info.ufunc
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2303 ETYPE_AUCMD, // autocomand, use es_info.aucmd
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2304 ETYPE_MODELINE, // modeline, use es_info.sctx
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2305 ETYPE_EXCEPT, // exception, use es_info.exception
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2306 ETYPE_ARGS, // command line argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2307 ETYPE_ENV, // environment variable
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2308 ETYPE_INTERNAL, // internal operation
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2309 ETYPE_SPELL, // loading spell file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2310 } etype_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2311
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2312 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2313 long es_lnum; // replaces "sourcing_lnum"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2314 char_u *es_name; // replaces "sourcing_name"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2315 etype_T es_type;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2316 union {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2317 sctx_T *sctx; // script and modeline info
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2318 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2319 ufunc_T *ufunc; // function info
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2320 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2321 AutoPatCmd_T *aucmd; // autocommand info
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2322 except_T *except; // exception info
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2323 } es_info;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2324 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2325 sctx_T es_save_sctx; // saved current_sctx when calling function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2326 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2327 } estack_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2328
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2329 // Information returned by get_tty_info().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2330 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2331 int backspace; // what the Backspace key produces
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2332 int enter; // what the Enter key produces
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2333 int interrupt; // interrupt character
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2334 int nl_does_cr; // TRUE when a NL is expanded to CR-NL on output
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2335 } ttyinfo_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2336
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2337 // Status of a job. Order matters!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2338 typedef enum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2339 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2340 JOB_FAILED,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2341 JOB_STARTED,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2342 JOB_ENDED, // detected job done
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2343 JOB_FINISHED, // job done and cleanup done
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2344 } jobstatus_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2345
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2346 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2347 * Structure to hold info about a Job.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2348 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2349 struct jobvar_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2350 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2351 job_T *jv_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2352 job_T *jv_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2353 #ifdef UNIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2354 pid_t jv_pid;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2355 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2356 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2357 PROCESS_INFORMATION jv_proc_info;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2358 HANDLE jv_job_object;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2359 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2360 jobstatus_T jv_status;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2361 char_u *jv_tty_in; // controlling tty input, allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2362 char_u *jv_tty_out; // controlling tty output, allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2363 char_u *jv_stoponexit; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2364 #ifdef UNIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2365 char_u *jv_termsig; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2366 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2367 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2368 char_u *jv_tty_type; // allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2369 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2370 int jv_exitval;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2371 callback_T jv_exit_cb;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2372
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2373 buf_T *jv_in_buf; // buffer from "in-name"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2374
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2375 int jv_refcount; // reference count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2376 int jv_copyID;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2377
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2378 channel_T *jv_channel; // channel for I/O, reference counted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2379 char **jv_argv; // command line used to start the job
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2380 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2381
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2382 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2383 * Structures to hold info about a Channel.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2384 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2385 struct readq_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2386 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2387 char_u *rq_buffer;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2388 long_u rq_buflen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2389 readq_T *rq_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2390 readq_T *rq_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2391 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2392
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2393 struct writeq_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2394 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2395 garray_T wq_ga;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2396 writeq_T *wq_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2397 writeq_T *wq_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2398 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2399
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2400 struct jsonq_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2401 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2402 typval_T *jq_value;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2403 jsonq_T *jq_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2404 jsonq_T *jq_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2405 int jq_no_callback; // TRUE when no callback was found
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2406 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2407
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2408 struct cbq_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2409 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2410 callback_T cq_callback;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2411 int cq_seq_nr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2412 cbq_T *cq_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2413 cbq_T *cq_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2414 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2415
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2416 // mode for a channel
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2417 typedef enum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2418 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2419 CH_MODE_NL = 0,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2420 CH_MODE_RAW,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2421 CH_MODE_JSON,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2422 CH_MODE_JS,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2423 CH_MODE_LSP // Language Server Protocol (http + json)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2424 } ch_mode_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2425
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2426 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2427 JIO_PIPE, // default
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2428 JIO_NULL,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2429 JIO_FILE,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2430 JIO_BUFFER,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2431 JIO_OUT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2432 } job_io_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2433
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2434 #define CH_PART_FD(part) ch_part[part].ch_fd
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2435
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2436 // Ordering matters, it is used in for loops: IN is last, only SOCK/OUT/ERR
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2437 // are polled.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2438 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2439 PART_SOCK = 0,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2440 #define CH_SOCK_FD CH_PART_FD(PART_SOCK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2441 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2442 PART_OUT,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2443 # define CH_OUT_FD CH_PART_FD(PART_OUT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2444 PART_ERR,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2445 # define CH_ERR_FD CH_PART_FD(PART_ERR)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2446 PART_IN,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2447 # define CH_IN_FD CH_PART_FD(PART_IN)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2448 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2449 PART_COUNT,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2450 } ch_part_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2451
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2452 #define INVALID_FD (-1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2453
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2454 // The per-fd info for a channel.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2455 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2456 sock_T ch_fd; // socket/stdin/stdout/stderr, -1 if not used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2457
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2458 # if defined(UNIX) && !defined(HAVE_SELECT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2459 int ch_poll_idx; // used by channel_poll_setup()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2460 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2461
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2462 #ifdef FEAT_GUI_X11
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2463 XtInputId ch_inputHandler; // Cookie for input
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2464 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2465 #ifdef FEAT_GUI_GTK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2466 gint ch_inputHandler; // Cookie for input
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2467 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2468
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2469 ch_mode_T ch_mode;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2470 job_io_T ch_io;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2471 int ch_timeout; // request timeout in msec
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2472
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2473 readq_T ch_head; // header for circular raw read queue
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2474 jsonq_T ch_json_head; // header for circular json read queue
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2475 garray_T ch_block_ids; // list of IDs that channel_read_json_block()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2476 // is waiting for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2477 // When ch_wait_len is non-zero use ch_deadline to wait for incomplete
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2478 // message to be complete. The value is the length of the incomplete
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2479 // message when the deadline was set. If it gets longer (something was
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2480 // received) the deadline is reset.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2481 size_t ch_wait_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2482 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2483 DWORD ch_deadline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2484 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2485 struct timeval ch_deadline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2486 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2487 int ch_block_write; // for testing: 0 when not used, -1 when write
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2488 // does not block, 1 simulate blocking
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2489 int ch_nonblocking; // write() is non-blocking
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2490 writeq_T ch_writeque; // header for write queue
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2491
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2492 cbq_T ch_cb_head; // dummy node for per-request callbacks
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2493 callback_T ch_callback; // call when a msg is not handled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2494
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2495 bufref_T ch_bufref; // buffer to read from or write to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2496 int ch_nomodifiable; // TRUE when buffer can be 'nomodifiable'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2497 int ch_nomod_error; // TRUE when e_modifiable was given
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2498 int ch_buf_append; // write appended lines instead top-bot
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2499 linenr_T ch_buf_top; // next line to send
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2500 linenr_T ch_buf_bot; // last line to send
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2501 } chanpart_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2502
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2503 struct channel_S {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2504 channel_T *ch_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2505 channel_T *ch_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2506
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2507 int ch_id; // ID of the channel
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2508 int ch_last_msg_id; // ID of the last message
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2509
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2510 chanpart_T ch_part[PART_COUNT]; // info for socket, out, err and in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2511 int ch_write_text_mode; // write buffer lines with CR, not NL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2512
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2513 char *ch_hostname; // only for socket, allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2514 int ch_port; // only for socket
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2515
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2516 int ch_to_be_closed; // bitset of readable fds to be closed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2517 // When all readable fds have been closed,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2518 // set to (1 << PART_COUNT).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2519 int ch_to_be_freed; // When TRUE channel must be freed when it's
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2520 // safe to invoke callbacks.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2521 int ch_error; // When TRUE an error was reported. Avoids
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2522 // giving pages full of error messages when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2523 // the other side has exited, only mention the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2524 // first error until the connection works
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2525 // again.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2526
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2527 void (*ch_nb_close_cb)(void);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2528 // callback for Netbeans when channel is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2529 // closed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2530
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2531 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2532 int ch_named_pipe; // using named pipe instead of pty
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2533 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2534 callback_T ch_callback; // call when any msg is not handled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2535 callback_T ch_close_cb; // call when channel is closed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2536 int ch_drop_never;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2537 int ch_keep_open; // do not close on read error
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2538 int ch_nonblock;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2539
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2540 job_T *ch_job; // Job that uses this channel; this does not
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2541 // count as a reference to avoid a circular
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2542 // reference, the job refers to the channel.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2543 int ch_job_killed; // TRUE when there was a job and it was killed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2544 // or we know it died.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2545 int ch_anonymous_pipe; // ConPTY
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2546 int ch_killing; // TerminateJobObject() was called
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2547
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2548 int ch_refcount; // reference count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2549 int ch_copyID;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2550 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2551
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2552 #define JO_MODE 0x0001 // channel mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2553 #define JO_IN_MODE 0x0002 // stdin mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2554 #define JO_OUT_MODE 0x0004 // stdout mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2555 #define JO_ERR_MODE 0x0008 // stderr mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2556 #define JO_CALLBACK 0x0010 // channel callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2557 #define JO_OUT_CALLBACK 0x0020 // stdout callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2558 #define JO_ERR_CALLBACK 0x0040 // stderr callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2559 #define JO_CLOSE_CALLBACK 0x0080 // "close_cb"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2560 #define JO_WAITTIME 0x0100 // only for ch_open()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2561 #define JO_TIMEOUT 0x0200 // all timeouts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2562 #define JO_OUT_TIMEOUT 0x0400 // stdout timeouts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2563 #define JO_ERR_TIMEOUT 0x0800 // stderr timeouts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2564 #define JO_PART 0x1000 // "part"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2565 #define JO_ID 0x2000 // "id"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2566 #define JO_STOPONEXIT 0x4000 // "stoponexit"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2567 #define JO_EXIT_CB 0x8000 // "exit_cb"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2568 #define JO_OUT_IO 0x10000 // "out_io"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2569 #define JO_ERR_IO 0x20000 // "err_io" (JO_OUT_IO << 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2570 #define JO_IN_IO 0x40000 // "in_io" (JO_OUT_IO << 2)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2571 #define JO_OUT_NAME 0x80000 // "out_name"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2572 #define JO_ERR_NAME 0x100000 // "err_name" (JO_OUT_NAME << 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2573 #define JO_IN_NAME 0x200000 // "in_name" (JO_OUT_NAME << 2)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2574 #define JO_IN_TOP 0x400000 // "in_top"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2575 #define JO_IN_BOT 0x800000 // "in_bot"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2576 #define JO_OUT_BUF 0x1000000 // "out_buf"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2577 #define JO_ERR_BUF 0x2000000 // "err_buf" (JO_OUT_BUF << 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2578 #define JO_IN_BUF 0x4000000 // "in_buf" (JO_OUT_BUF << 2)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2579 #define JO_CHANNEL 0x8000000 // "channel"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2580 #define JO_BLOCK_WRITE 0x10000000 // "block_write"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2581 #define JO_OUT_MODIFIABLE 0x20000000 // "out_modifiable"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2582 #define JO_ERR_MODIFIABLE 0x40000000 // "err_modifiable" (JO_OUT_ << 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2583 #define JO_ALL 0x7fffffff
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2584
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2585 #define JO2_OUT_MSG 0x0001 // "out_msg"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2586 #define JO2_ERR_MSG 0x0002 // "err_msg" (JO_OUT_ << 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2587 #define JO2_TERM_NAME 0x0004 // "term_name"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2588 #define JO2_TERM_FINISH 0x0008 // "term_finish"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2589 #define JO2_ENV 0x0010 // "env"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2590 #define JO2_CWD 0x0020 // "cwd"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2591 #define JO2_TERM_ROWS 0x0040 // "term_rows"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2592 #define JO2_TERM_COLS 0x0080 // "term_cols"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2593 #define JO2_VERTICAL 0x0100 // "vertical"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2594 #define JO2_CURWIN 0x0200 // "curwin"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2595 #define JO2_HIDDEN 0x0400 // "hidden"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2596 #define JO2_TERM_OPENCMD 0x0800 // "term_opencmd"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2597 #define JO2_EOF_CHARS 0x1000 // "eof_chars"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2598 #define JO2_NORESTORE 0x2000 // "norestore"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2599 #define JO2_TERM_KILL 0x4000 // "term_kill"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2600 #define JO2_ANSI_COLORS 0x8000 // "ansi_colors"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2601 #define JO2_TTY_TYPE 0x10000 // "tty_type"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2602 #define JO2_BUFNR 0x20000 // "bufnr"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2603 #define JO2_TERM_API 0x40000 // "term_api"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2604 #define JO2_TERM_HIGHLIGHT 0x80000 // "highlight"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2605
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2606 #define JO_MODE_ALL (JO_MODE + JO_IN_MODE + JO_OUT_MODE + JO_ERR_MODE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2607 #define JO_CB_ALL \
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2608 (JO_CALLBACK + JO_OUT_CALLBACK + JO_ERR_CALLBACK + JO_CLOSE_CALLBACK)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2609 #define JO_TIMEOUT_ALL (JO_TIMEOUT + JO_OUT_TIMEOUT + JO_ERR_TIMEOUT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2610
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2611 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2612 * Options for job and channel commands.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2613 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2614 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2615 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2616 int jo_set; // JO_ bits for values that were set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2617 int jo_set2; // JO2_ bits for values that were set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2618
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2619 ch_mode_T jo_mode;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2620 ch_mode_T jo_in_mode;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2621 ch_mode_T jo_out_mode;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2622 ch_mode_T jo_err_mode;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2623 int jo_noblock;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2624
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2625 job_io_T jo_io[4]; // PART_OUT, PART_ERR, PART_IN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2626 char_u jo_io_name_buf[4][NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2627 char_u *jo_io_name[4]; // not allocated!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2628 int jo_io_buf[4];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2629 int jo_pty;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2630 int jo_modifiable[4];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2631 int jo_message[4];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2632 channel_T *jo_channel;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2633
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2634 linenr_T jo_in_top;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2635 linenr_T jo_in_bot;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2636
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2637 callback_T jo_callback;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2638 callback_T jo_out_cb;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2639 callback_T jo_err_cb;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2640 callback_T jo_close_cb;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2641 callback_T jo_exit_cb;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2642 int jo_drop_never;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2643 int jo_waittime;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2644 int jo_timeout;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2645 int jo_out_timeout;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2646 int jo_err_timeout;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2647 int jo_block_write; // for testing only
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2648 int jo_part;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2649 int jo_id;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2650 char_u jo_stoponexit_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2651 char_u *jo_stoponexit;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2652 dict_T *jo_env; // environment variables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2653 char_u jo_cwd_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2654 char_u *jo_cwd;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2655
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2656 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2657 // when non-zero run the job in a terminal window of this size
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2658 int jo_term_rows;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2659 int jo_term_cols;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2660 int jo_vertical;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2661 int jo_curwin;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2662 buf_T *jo_bufnr_buf;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2663 int jo_hidden;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2664 int jo_term_norestore;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2665 char_u jo_term_name_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2666 char_u *jo_term_name;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2667 char_u jo_term_opencmd_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2668 char_u *jo_term_opencmd;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2669 int jo_term_finish;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2670 char_u jo_eof_chars_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2671 char_u *jo_eof_chars;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2672 char_u jo_term_kill_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2673 char_u *jo_term_kill;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2674 # if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2675 long_u jo_ansi_colors[16];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2676 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2677 char_u jo_term_highlight_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2678 char_u *jo_term_highlight;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2679 int jo_tty_type; // first character of "tty_type"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2680 char_u jo_term_api_buf[NUMBUFLEN];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2681 char_u *jo_term_api;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2682 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2683 } jobopt_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2684
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2685 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2686 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2687 * Structure used for listeners added with listener_add().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2688 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2689 typedef struct listener_S listener_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2690 struct listener_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2691 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2692 listener_T *lr_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2693 int lr_id;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2694 callback_T lr_callback;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2695 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2696 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2697
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2698 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2699 * structure used for explicit stack while garbage collecting hash tables
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2700 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2701 typedef struct ht_stack_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2702 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2703 hashtab_T *ht;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2704 struct ht_stack_S *prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2705 } ht_stack_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2706
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2707 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2708 * structure used for explicit stack while garbage collecting lists
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2709 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2710 typedef struct list_stack_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2711 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2712 list_T *list;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2713 struct list_stack_S *prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2714 } list_stack_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2715
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2716 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2717 * Structure used for iterating over dictionary items.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2718 * Initialize with dict_iterate_start().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2719 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2720 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2721 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2722 long_u dit_todo;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2723 hashitem_T *dit_hi;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2724 } dict_iterator_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2725
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2726 // values for b_syn_spell: what to do with toplevel text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2727 #define SYNSPL_DEFAULT 0 // spell check if @Spell not defined
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2728 #define SYNSPL_TOP 1 // spell check toplevel text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2729 #define SYNSPL_NOTOP 2 // don't spell check toplevel text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2730
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2731 // values for b_syn_foldlevel: how to compute foldlevel on a line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2732 #define SYNFLD_START 0 // use level of item at start of line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2733 #define SYNFLD_MINIMUM 1 // use lowest local minimum level on line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2734
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2735 // avoid #ifdefs for when b_spell is not available
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2736 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2737 # define B_SPELL(buf) ((buf)->b_spell)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2738 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2739 # define B_SPELL(buf) (0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2740 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2741
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2742 typedef struct qf_info_S qf_info_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2743
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2744 #ifdef FEAT_PROFILE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2745 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2746 * Used for :syntime: timing of executing a syntax pattern.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2747 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2748 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2749 proftime_T total; // total time used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2750 proftime_T slowest; // time of slowest call
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2751 long count; // nr of times used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2752 long match; // nr of times matched
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2753 } syn_time_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2754 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2755
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2756 typedef struct timer_S timer_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2757 struct timer_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2758 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2759 long tr_id;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2760 #ifdef FEAT_TIMERS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2761 timer_T *tr_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2762 timer_T *tr_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2763 proftime_T tr_due; // when the callback is to be invoked
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2764 char tr_firing; // when TRUE callback is being called
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2765 char tr_paused; // when TRUE callback is not invoked
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2766 char tr_keep; // when TRUE keep timer after it fired
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2767 int tr_repeat; // number of times to repeat, -1 forever
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2768 long tr_interval; // msec
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2769 callback_T tr_callback;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2770 int tr_emsg_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2771 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2772 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2773
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2774 #ifdef FEAT_CRYPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2775 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2776 * Structure to hold the type of encryption and the state of encryption or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2777 * decryption.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2778 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2779 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2780 int method_nr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2781 void *method_state; // method-specific state information
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2782 } cryptstate_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2783
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2784 // values for method_nr
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2785 # define CRYPT_M_ZIP 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2786 # define CRYPT_M_BF 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2787 # define CRYPT_M_BF2 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2788 # define CRYPT_M_SOD 3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2789 # define CRYPT_M_SOD2 4
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2790 # define CRYPT_M_COUNT 5 // number of crypt methods
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2791
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2792 // Currently all crypt methods work inplace. If one is added that isn't then
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2793 // define this.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2794 # define CRYPT_NOT_INPLACE 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2795
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2796 // Struct for passing arguments down to the crypt_init functions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2797 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2798 char_u *cat_salt;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2799 int cat_salt_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2800 char_u *cat_seed;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2801 int cat_seed_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2802 char_u *cat_add;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2803 int cat_add_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2804 int cat_init_from_file;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2805 } crypt_arg_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2806
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2807 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2808
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2809 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2810 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2811 POPPOS_BOTLEFT,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2812 POPPOS_TOPLEFT,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2813 POPPOS_BOTRIGHT,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2814 POPPOS_TOPRIGHT,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2815 POPPOS_CENTER,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2816 POPPOS_BOTTOM, // bottom of popup just above the command line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2817 POPPOS_NONE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2818 } poppos_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2819
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2820 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2821 POPCLOSE_NONE,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2822 POPCLOSE_BUTTON,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2823 POPCLOSE_CLICK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2824 } popclose_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2825
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2826 # define POPUPWIN_DEFAULT_ZINDEX 50
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2827 # define POPUPMENU_ZINDEX 100
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2828 # define POPUPWIN_DIALOG_ZINDEX 200
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2829 # define POPUPWIN_NOTIFICATION_ZINDEX 300
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2830 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2831
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2832 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2833 * These are items normally related to a buffer. But when using ":ownsyntax"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2834 * a window may have its own instance.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2835 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2836 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2837 #ifdef FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2838 hashtab_T b_keywtab; // syntax keywords hash table
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2839 hashtab_T b_keywtab_ic; // idem, ignore case
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2840 int b_syn_error; // TRUE when error occurred in HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2841 # ifdef FEAT_RELTIME
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2842 int b_syn_slow; // TRUE when 'redrawtime' reached
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2843 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2844 int b_syn_ic; // ignore case for :syn cmds
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2845 int b_syn_foldlevel; // how to compute foldlevel on a line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2846 int b_syn_spell; // SYNSPL_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2847 garray_T b_syn_patterns; // table for syntax patterns
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2848 garray_T b_syn_clusters; // table for syntax clusters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2849 int b_spell_cluster_id; // @Spell cluster ID or 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2850 int b_nospell_cluster_id; // @NoSpell cluster ID or 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2851 int b_syn_containedin; // TRUE when there is an item with a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2852 // "containedin" argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2853 int b_syn_sync_flags; // flags about how to sync
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2854 short b_syn_sync_id; // group to sync on
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2855 long b_syn_sync_minlines; // minimal sync lines offset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2856 long b_syn_sync_maxlines; // maximal sync lines offset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2857 long b_syn_sync_linebreaks; // offset for multi-line pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2858 char_u *b_syn_linecont_pat; // line continuation pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2859 regprog_T *b_syn_linecont_prog; // line continuation program
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2860 #ifdef FEAT_PROFILE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2861 syn_time_T b_syn_linecont_time;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2862 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2863 int b_syn_linecont_ic; // ignore-case flag for above
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2864 int b_syn_topgrp; // for ":syntax include"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2865 # ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2866 int b_syn_conceal; // auto-conceal for :syn cmds
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2867 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2868 # ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2869 int b_syn_folditems; // number of patterns with the HL_FOLD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2870 // flag set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2871 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2872 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2873 * b_sst_array[] contains the state stack for a number of lines, for the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2874 * start of that line (col == 0). This avoids having to recompute the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2875 * syntax state too often.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2876 * b_sst_array[] is allocated to hold the state for all displayed lines,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2877 * and states for 1 out of about 20 other lines.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2878 * b_sst_array pointer to an array of synstate_T
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2879 * b_sst_len number of entries in b_sst_array[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2880 * b_sst_first pointer to first used entry in b_sst_array[] or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2881 * b_sst_firstfree pointer to first free entry in b_sst_array[] or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2882 * b_sst_freecount number of free entries in b_sst_array[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2883 * b_sst_check_lnum entries after this lnum need to be checked for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2884 * validity (MAXLNUM means no check needed)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2885 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2886 synstate_T *b_sst_array;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2887 int b_sst_len;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2888 synstate_T *b_sst_first;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2889 synstate_T *b_sst_firstfree;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2890 int b_sst_freecount;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2891 linenr_T b_sst_check_lnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2892 short_u b_sst_lasttick; // last display tick
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2893 #endif // FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2894
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2895 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2896 // for spell checking
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2897 garray_T b_langp; // list of pointers to slang_T, see spell.c
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2898 char_u b_spell_ismw[256]; // flags: is midword char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2899 char_u *b_spell_ismw_mb; // multi-byte midword chars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2900 char_u *b_p_spc; // 'spellcapcheck'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2901 regprog_T *b_cap_prog; // program for 'spellcapcheck'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2902 char_u *b_p_spf; // 'spellfile'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2903 char_u *b_p_spl; // 'spelllang'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2904 char_u *b_p_spo; // 'spelloptions'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2905 int b_cjk; // all CJK letters as OK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2906 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2907 #if !defined(FEAT_SYN_HL) && !defined(FEAT_SPELL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2908 int dummy;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2909 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2910 char_u b_syn_chartab[32]; // syntax iskeyword option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2911 char_u *b_syn_isk; // iskeyword option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2912 } synblock_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2913
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2914
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2915 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2916 * buffer: structure that holds information about one file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2917 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2918 * Several windows can share a single Buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2919 * A buffer is unallocated if there is no memfile for it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2920 * A buffer is new if the associated file has never been loaded yet.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2921 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2922
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2923 struct file_buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2924 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2925 memline_T b_ml; // associated memline (also contains line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2926 // count)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2927
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2928 buf_T *b_next; // links in list of buffers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2929 buf_T *b_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2930
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2931 int b_nwindows; // nr of windows open on this buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2932
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2933 int b_flags; // various BF_ flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2934 int b_locked; // Buffer is being closed or referenced, don't
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2935 // let autocommands wipe it out.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2936 int b_locked_split; // Buffer is being closed, don't allow opening
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2937 // a new window with it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2938
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2939 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2940 * b_ffname has the full path of the file (NULL for no name).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2941 * b_sfname is the name as the user typed it (or NULL).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2942 * b_fname is the same as b_sfname, unless ":cd" has been done,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2943 * then it is the same as b_ffname (NULL for no name).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2944 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2945 char_u *b_ffname; // full path file name, allocated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2946 char_u *b_sfname; // short file name, allocated, may be equal to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2947 // b_ffname
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2948 char_u *b_fname; // current file name, points to b_ffname or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2949 // b_sfname
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2950
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2951 #ifdef UNIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2952 int b_dev_valid; // TRUE when b_dev has a valid number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2953 dev_t b_dev; // device number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2954 ino_t b_ino; // inode number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2955 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2956 #ifdef VMS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2957 char b_fab_rfm; // Record format
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2958 char b_fab_rat; // Record attribute
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2959 unsigned int b_fab_mrs; // Max record size
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2960 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2961 int b_fnum; // buffer number for this file.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2962 char_u b_key[VIM_SIZEOF_INT * 2 + 1];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2963 // key used for buf_hashtab, holds b_fnum as
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2964 // hex string
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2965
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2966 int b_changed; // 'modified': Set to TRUE if something in the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2967 // file has been changed and not written out.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2968 dictitem16_T b_ct_di; // holds the b:changedtick value in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2969 // b_ct_di.di_tv.vval.v_number;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2970 // incremented for each change, also for undo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2971 #define CHANGEDTICK(buf) ((buf)->b_ct_di.di_tv.vval.v_number)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2972
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2973 varnumber_T b_last_changedtick; // b:changedtick when TextChanged was
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2974 // last triggered.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2975 varnumber_T b_last_changedtick_pum; // b:changedtick for TextChangedP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2976 varnumber_T b_last_changedtick_i; // b:changedtick for TextChangedI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2977
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2978 int b_saving; // Set to TRUE if we are in the middle of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2979 // saving the buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2980
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2981 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2982 * Changes to a buffer require updating of the display. To minimize the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2983 * work, remember changes made and update everything at once.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2984 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2985 int b_mod_set; // TRUE when there are changes since the last
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2986 // time the display was updated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2987 linenr_T b_mod_top; // topmost lnum that was changed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2988 linenr_T b_mod_bot; // lnum below last changed line, AFTER the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2989 // change
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2990 long b_mod_xlines; // number of extra buffer lines inserted;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2991 // negative when lines were deleted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2992
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2993 wininfo_T *b_wininfo; // list of last used info for each window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2994
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2995 long b_mtime; // last change time of original file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2996 long b_mtime_ns; // nanoseconds of last change time
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2997 long b_mtime_read; // last change time when reading
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2998 long b_mtime_read_ns; // nanoseconds of last read time
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
2999 off_T b_orig_size; // size of original file in bytes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3000 int b_orig_mode; // mode of original file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3001 #ifdef FEAT_VIMINFO
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3002 time_T b_last_used; // time when the buffer was last used; used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3003 // for viminfo
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3004 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3005
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3006 pos_T b_namedm[NMARKS]; // current named marks (mark.c)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3007
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3008 // These variables are set when VIsual_active becomes FALSE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3009 visualinfo_T b_visual;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3010 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3011 int b_visual_mode_eval; // b_visual.vi_mode for visualmode()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3012 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3013
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3014 pos_T b_last_cursor; // cursor position when last unloading this
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3015 // buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3016 pos_T b_last_insert; // where Insert mode was left
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3017 pos_T b_last_change; // position of last change: '. mark
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3018
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3019 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3020 * the changelist contains old change positions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3021 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3022 pos_T b_changelist[JUMPLISTSIZE];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3023 int b_changelistlen; // number of active entries
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3024 int b_new_change; // set by u_savecommon()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3025
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3026 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3027 * Character table, only used in charset.c for 'iskeyword'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3028 * 32 bytes of 8 bits: 1 bit per character 0-255.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3029 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3030 char_u b_chartab[32];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3031
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3032 // Table used for mappings local to a buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3033 mapblock_T *(b_maphash[256]);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3034
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3035 // First abbreviation local to a buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3036 mapblock_T *b_first_abbr;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3037
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3038 // User commands local to the buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3039 garray_T b_ucmds;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3040 // start and end of an operator, also used for '[ and ']
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3041 pos_T b_op_start;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3042 pos_T b_op_start_orig; // used for Insstart_orig
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3043 pos_T b_op_end;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3044
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3045 #ifdef FEAT_VIMINFO
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3046 int b_marks_read; // Have we read viminfo marks yet?
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3047 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3048
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3049 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3050 * The following only used in undo.c.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3051 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3052 u_header_T *b_u_oldhead; // pointer to oldest header
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3053 u_header_T *b_u_newhead; // pointer to newest header; may not be valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3054 // if b_u_curhead is not NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3055 u_header_T *b_u_curhead; // pointer to current header
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3056 int b_u_numhead; // current number of headers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3057 int b_u_synced; // entry lists are synced
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3058 long b_u_seq_last; // last used undo sequence number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3059 long b_u_save_nr_last; // counter for last file write
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3060 long b_u_seq_cur; // uh_seq of header below which we are now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3061 time_T b_u_time_cur; // uh_time of header below which we are now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3062 long b_u_save_nr_cur; // file write nr after which we are now
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3063
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3064 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3065 * variables for "U" command in undo.c
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3066 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3067 undoline_T b_u_line_ptr; // saved line for "U" command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3068 linenr_T b_u_line_lnum; // line number of line in u_line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3069 colnr_T b_u_line_colnr; // optional column number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3070
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3071 int b_scanned; // ^N/^P have scanned this buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3072
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3073 // flags for use of ":lmap" and IM control
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3074 long b_p_iminsert; // input mode for insert
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3075 long b_p_imsearch; // input mode for search
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3076 #define B_IMODE_USE_INSERT (-1) // Use b_p_iminsert value for search
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3077 #define B_IMODE_NONE 0 // Input via none
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3078 #define B_IMODE_LMAP 1 // Input via langmap
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3079 #define B_IMODE_IM 2 // Input via input method
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3080 #define B_IMODE_LAST 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3081
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3082 #ifdef FEAT_KEYMAP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3083 short b_kmap_state; // using "lmap" mappings
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3084 # define KEYMAP_INIT 1 // 'keymap' was set, call keymap_init()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3085 # define KEYMAP_LOADED 2 // 'keymap' mappings have been loaded
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3086 garray_T b_kmap_ga; // the keymap table
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3087 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3088
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3089 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3090 * Options local to a buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3091 * They are here because their value depends on the type of file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3092 * or contents of the file being edited.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3093 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3094 int b_p_initialized; // set when options initialized
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3095
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3096 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3097 sctx_T b_p_script_ctx[BV_COUNT]; // SCTXs for buffer-local options
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3098 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3099
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3100 int b_p_ai; // 'autoindent'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3101 int b_p_ai_nopaste; // b_p_ai saved for paste mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3102 char_u *b_p_bkc; // 'backupcopy'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3103 unsigned b_bkc_flags; // flags for 'backupcopy'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3104 int b_p_ci; // 'copyindent'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3105 int b_p_bin; // 'binary'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3106 int b_p_bomb; // 'bomb'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3107 char_u *b_p_bh; // 'bufhidden'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3108 char_u *b_p_bt; // 'buftype'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3109 #ifdef FEAT_QUICKFIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3110 #define BUF_HAS_QF_ENTRY 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3111 #define BUF_HAS_LL_ENTRY 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3112 int b_has_qf_entry;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3113 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3114 int b_p_bl; // 'buflisted'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3115 int b_p_cin; // 'cindent'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3116 char_u *b_p_cino; // 'cinoptions'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3117 char_u *b_p_cink; // 'cinkeys'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3118 char_u *b_p_cinsd; // 'cinscopedecls'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3119 char_u *b_p_cinw; // 'cinwords'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3120 char_u *b_p_com; // 'comments'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3121 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3122 char_u *b_p_cms; // 'commentstring'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3123 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3124 char_u *b_p_cpt; // 'complete'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3125 #ifdef BACKSLASH_IN_FILENAME
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3126 char_u *b_p_csl; // 'completeslash'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3127 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3128 #ifdef FEAT_COMPL_FUNC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3129 char_u *b_p_cfu; // 'completefunc'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3130 callback_T b_cfu_cb; // 'completefunc' callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3131 char_u *b_p_ofu; // 'omnifunc'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3132 callback_T b_ofu_cb; // 'omnifunc' callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3133 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3134 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3135 char_u *b_p_tfu; // 'tagfunc' option value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3136 callback_T b_tfu_cb; // 'tagfunc' callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3137 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3138 int b_p_eof; // 'endoffile'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3139 int b_p_eol; // 'endofline'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3140 int b_p_fixeol; // 'fixendofline'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3141 int b_p_et; // 'expandtab'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3142 int b_p_et_nobin; // b_p_et saved for binary mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3143 int b_p_et_nopaste; // b_p_et saved for paste mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3144 char_u *b_p_fenc; // 'fileencoding'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3145 char_u *b_p_ff; // 'fileformat'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3146 char_u *b_p_ft; // 'filetype'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3147 char_u *b_p_fo; // 'formatoptions'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3148 char_u *b_p_flp; // 'formatlistpat'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3149 int b_p_inf; // 'infercase'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3150 char_u *b_p_isk; // 'iskeyword'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3151 #ifdef FEAT_FIND_ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3152 char_u *b_p_def; // 'define' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3153 char_u *b_p_inc; // 'include'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3154 # ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3155 char_u *b_p_inex; // 'includeexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3156 long_u b_p_inex_flags; // flags for 'includeexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3157 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3158 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3159 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3160 char_u *b_p_inde; // 'indentexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3161 long_u b_p_inde_flags; // flags for 'indentexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3162 char_u *b_p_indk; // 'indentkeys'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3163 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3164 char_u *b_p_fp; // 'formatprg'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3165 #if defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3166 char_u *b_p_fex; // 'formatexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3167 long_u b_p_fex_flags; // flags for 'formatexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3168 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3169 #ifdef FEAT_CRYPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3170 char_u *b_p_key; // 'key'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3171 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3172 char_u *b_p_kp; // 'keywordprg'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3173 int b_p_lisp; // 'lisp'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3174 char_u *b_p_lop; // 'lispoptions'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3175 char_u *b_p_menc; // 'makeencoding'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3176 char_u *b_p_mps; // 'matchpairs'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3177 int b_p_ml; // 'modeline'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3178 int b_p_ml_nobin; // b_p_ml saved for binary mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3179 int b_p_ma; // 'modifiable'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3180 char_u *b_p_nf; // 'nrformats'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3181 int b_p_pi; // 'preserveindent'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3182 char_u *b_p_qe; // 'quoteescape'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3183 int b_p_ro; // 'readonly'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3184 long b_p_sw; // 'shiftwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3185 int b_p_sn; // 'shortname'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3186 int b_p_si; // 'smartindent'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3187 long b_p_sts; // 'softtabstop'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3188 long b_p_sts_nopaste; // b_p_sts saved for paste mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3189 char_u *b_p_sua; // 'suffixesadd'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3190 int b_p_swf; // 'swapfile'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3191 #ifdef FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3192 long b_p_smc; // 'synmaxcol'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3193 char_u *b_p_syn; // 'syntax'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3194 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3195 long b_p_ts; // 'tabstop'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3196 int b_p_tx; // 'textmode'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3197 long b_p_tw; // 'textwidth'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3198 long b_p_tw_nobin; // b_p_tw saved for binary mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3199 long b_p_tw_nopaste; // b_p_tw saved for paste mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3200 long b_p_wm; // 'wrapmargin'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3201 long b_p_wm_nobin; // b_p_wm saved for binary mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3202 long b_p_wm_nopaste; // b_p_wm saved for paste mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3203 #ifdef FEAT_VARTABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3204 char_u *b_p_vsts; // 'varsofttabstop'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3205 int *b_p_vsts_array; // 'varsofttabstop' in internal format
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3206 char_u *b_p_vsts_nopaste; // b_p_vsts saved for paste mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3207 char_u *b_p_vts; // 'vartabstop'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3208 int *b_p_vts_array; // 'vartabstop' in internal format
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3209 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3210 #ifdef FEAT_KEYMAP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3211 char_u *b_p_keymap; // 'keymap'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3212 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3213
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3214 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3215 * local values for options which are normally global
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3216 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3217 #ifdef FEAT_QUICKFIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3218 char_u *b_p_gp; // 'grepprg' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3219 char_u *b_p_mp; // 'makeprg' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3220 char_u *b_p_efm; // 'errorformat' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3221 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3222 char_u *b_p_ep; // 'equalprg' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3223 char_u *b_p_path; // 'path' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3224 int b_p_ar; // 'autoread' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3225 char_u *b_p_tags; // 'tags' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3226 char_u *b_p_tc; // 'tagcase' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3227 unsigned b_tc_flags; // flags for 'tagcase'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3228 char_u *b_p_dict; // 'dictionary' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3229 char_u *b_p_tsr; // 'thesaurus' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3230 #ifdef FEAT_COMPL_FUNC
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3231 char_u *b_p_tsrfu; // 'thesaurusfunc' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3232 callback_T b_tsrfu_cb; // 'thesaurusfunc' callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3233 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3234 long b_p_ul; // 'undolevels' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3235 #ifdef FEAT_PERSISTENT_UNDO
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3236 int b_p_udf; // 'undofile'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3237 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3238 char_u *b_p_lw; // 'lispwords' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3239 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3240 long b_p_twsl; // 'termwinscroll'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3241 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3242
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3243 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3244 * end of buffer options
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3245 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3246
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3247 // values set from b_p_cino
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3248 int b_ind_level;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3249 int b_ind_open_imag;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3250 int b_ind_no_brace;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3251 int b_ind_first_open;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3252 int b_ind_open_extra;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3253 int b_ind_close_extra;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3254 int b_ind_open_left_imag;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3255 int b_ind_jump_label;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3256 int b_ind_case;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3257 int b_ind_case_code;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3258 int b_ind_case_break;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3259 int b_ind_param;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3260 int b_ind_func_type;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3261 int b_ind_comment;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3262 int b_ind_in_comment;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3263 int b_ind_in_comment2;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3264 int b_ind_cpp_baseclass;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3265 int b_ind_continuation;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3266 int b_ind_unclosed;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3267 int b_ind_unclosed2;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3268 int b_ind_unclosed_noignore;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3269 int b_ind_unclosed_wrapped;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3270 int b_ind_unclosed_whiteok;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3271 int b_ind_matching_paren;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3272 int b_ind_paren_prev;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3273 int b_ind_maxparen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3274 int b_ind_maxcomment;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3275 int b_ind_scopedecl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3276 int b_ind_scopedecl_code;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3277 int b_ind_java;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3278 int b_ind_js;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3279 int b_ind_keep_case_label;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3280 int b_ind_hash_comment;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3281 int b_ind_cpp_namespace;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3282 int b_ind_if_for_while;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3283 int b_ind_cpp_extern_c;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3284 int b_ind_pragma;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3285
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3286 linenr_T b_no_eol_lnum; // non-zero lnum when last line of next binary
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3287 // write should not have an end-of-line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3288
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3289 int b_start_eof; // last line had eof (CTRL-Z) when it was read
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3290 int b_start_eol; // last line had eol when it was read
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3291 int b_start_ffc; // first char of 'ff' when edit started
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3292 char_u *b_start_fenc; // 'fileencoding' when edit started or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3293 int b_bad_char; // "++bad=" argument when edit started or 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3294 int b_start_bomb; // 'bomb' when it was read
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3295
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3296 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3297 dictitem_T b_bufvar; // variable for "b:" Dictionary
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3298 dict_T *b_vars; // internal variables, local to buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3299
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3300 listener_T *b_listener;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3301 list_T *b_recorded_changes;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3302 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3303 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3304 int b_has_textprop; // TRUE when text props were added
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3305 hashtab_T *b_proptypes; // text property types local to buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3306 proptype_T **b_proparray; // entries of b_proptypes sorted on tp_id
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3307 garray_T b_textprop_text; // stores text for props, index by (-id - 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3308 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3309
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3310 #if defined(FEAT_BEVAL) && defined(FEAT_EVAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3311 char_u *b_p_bexpr; // 'balloonexpr' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3312 long_u b_p_bexpr_flags;// flags for 'balloonexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3313 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3314 #ifdef FEAT_CRYPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3315 char_u *b_p_cm; // 'cryptmethod'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3316 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3317
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3318 // When a buffer is created, it starts without a swap file. b_may_swap is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3319 // then set to indicate that a swap file may be opened later. It is reset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3320 // if a swap file could not be opened.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3321 int b_may_swap;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3322 int b_did_warn; // Set to 1 if user has been warned on first
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3323 // change of a read-only file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3324
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3325 // Two special kinds of buffers:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3326 // help buffer - used for help files, won't use a swap file.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3327 // spell buffer - used for spell info, never displayed and doesn't have a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3328 // file name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3329 int b_help; // TRUE for help file buffer (when set b_p_bt
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3330 // is "help")
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3331 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3332 int b_spell; // TRUE for a spell file buffer, most fields
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3333 // are not used! Use the B_SPELL macro to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3334 // access b_spell without #ifdef.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3335 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3336
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3337 int b_shortname; // this file has an 8.3 file name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3338
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3339 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3340 char_u *b_prompt_text; // set by prompt_setprompt()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3341 callback_T b_prompt_callback; // set by prompt_setcallback()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3342 callback_T b_prompt_interrupt; // set by prompt_setinterrupt()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3343 int b_prompt_insert; // value for restart_edit when entering
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3344 // a prompt buffer window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3345 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3346 #ifdef FEAT_MZSCHEME
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3347 void *b_mzscheme_ref; // The MzScheme reference to this buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3348 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3349
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3350 #ifdef FEAT_PERL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3351 void *b_perl_private;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3352 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3353
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3354 #ifdef FEAT_PYTHON
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3355 void *b_python_ref; // The Python reference to this buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3356 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3357
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3358 #ifdef FEAT_PYTHON3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3359 void *b_python3_ref; // The Python3 reference to this buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3360 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3361
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3362 #ifdef FEAT_TCL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3363 void *b_tcl_ref;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3364 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3365
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3366 #ifdef FEAT_RUBY
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3367 void *b_ruby_ref;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3368 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3369
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3370 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3371 synblock_T b_s; // Info related to syntax highlighting. w_s
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3372 // normally points to this, but some windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3373 // may use a different synblock_T.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3374 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3375
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3376 #ifdef FEAT_SIGNS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3377 sign_entry_T *b_signlist; // list of placed signs
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3378 # ifdef FEAT_NETBEANS_INTG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3379 int b_has_sign_column; // Flag that is set when a first sign is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3380 // added and remains set until the end of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3381 // the netbeans session.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3382 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3383 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3384
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3385 #ifdef FEAT_NETBEANS_INTG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3386 int b_netbeans_file; // TRUE when buffer is owned by NetBeans
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3387 int b_was_netbeans_file;// TRUE if b_netbeans_file was once set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3388 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3389 #ifdef FEAT_JOB_CHANNEL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3390 int b_write_to_channel; // TRUE when appended lines are written to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3391 // a channel.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3392 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3393
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3394 #ifdef FEAT_CRYPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3395 cryptstate_T *b_cryptstate; // Encryption state while reading or writing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3396 // the file. NULL when not using encryption.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3397 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3398 int b_mapped_ctrl_c; // modes where CTRL-C is mapped
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3399
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3400 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3401 term_T *b_term; // When not NULL this buffer is for a terminal
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3402 // window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3403 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3404 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3405 int b_diff_failed; // internal diff failed for this buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3406 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3407 }; // file_buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3408
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3409
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3410 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3411 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3412 * Stuff for diff mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3413 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3414 # define DB_COUNT 8 // up to eight buffers can be diff'ed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3415
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3416 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3417 * Each diffblock defines where a block of lines starts in each of the buffers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3418 * and how many lines it occupies in that buffer. When the lines are missing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3419 * in the buffer the df_count[] is zero. This is all counted in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3420 * buffer lines.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3421 * There is always at least one unchanged line in between the diffs.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3422 * Otherwise it would have been included in the diff above or below it.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3423 * df_lnum[] + df_count[] is the lnum below the change. When in one buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3424 * lines have been inserted, in the other buffer df_lnum[] is the line below
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3425 * the insertion and df_count[] is zero. When appending lines at the end of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3426 * the buffer, df_lnum[] is one beyond the end!
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3427 * This is using a linked list, because the number of differences is expected
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3428 * to be reasonable small. The list is sorted on lnum.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3429 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3430 typedef struct diffblock_S diff_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3431 struct diffblock_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3432 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3433 diff_T *df_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3434 linenr_T df_lnum[DB_COUNT]; // line number in buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3435 linenr_T df_count[DB_COUNT]; // nr of inserted/changed lines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3436 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3437 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3438
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3439 #define SNAP_HELP_IDX 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3440 #define SNAP_AUCMD_IDX 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3441 #define SNAP_COUNT 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3442
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3443 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3444 * Tab pages point to the top frame of each tab page.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3445 * Note: Most values are NOT valid for the current tab page! Use "curwin",
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3446 * "firstwin", etc. for that. "tp_topframe" is always valid and can be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3447 * compared against "topframe" to find the current tab page.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3448 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3449 typedef struct tabpage_S tabpage_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3450 struct tabpage_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3451 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3452 tabpage_T *tp_next; // next tabpage or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3453 frame_T *tp_topframe; // topframe for the windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3454 win_T *tp_curwin; // current window in this Tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3455 win_T *tp_prevwin; // previous window in this Tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3456 win_T *tp_firstwin; // first window in this Tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3457 win_T *tp_lastwin; // last window in this Tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3458 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3459 win_T *tp_first_popupwin; // first popup window in this Tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3460 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3461 long tp_old_Rows; // Rows when Tab page was left
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3462 long tp_old_Columns; // Columns when Tab page was left, -1 when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3463 // calling shell_new_columns() postponed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3464 long tp_ch_used; // value of 'cmdheight' when frame size
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3465 // was set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3466 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3467 int tp_prev_which_scrollbars[3];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3468 // previous value of which_scrollbars
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3469 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3470
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3471 char_u *tp_localdir; // absolute path of local directory or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3472 // NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3473 char_u *tp_prevdir; // previous directory
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3474
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3475 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3476 diff_T *tp_first_diff;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3477 buf_T *(tp_diffbuf[DB_COUNT]);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3478 int tp_diff_invalid; // list of diffs is outdated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3479 int tp_diff_update; // update diffs before redrawing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3480 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3481 frame_T *(tp_snapshot[SNAP_COUNT]); // window layout snapshots
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3482 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3483 dictitem_T tp_winvar; // variable for "t:" Dictionary
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3484 dict_T *tp_vars; // internal variables, local to tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3485 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3486
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3487 #ifdef FEAT_PYTHON
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3488 void *tp_python_ref; // The Python value for this tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3489 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3490
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3491 #ifdef FEAT_PYTHON3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3492 void *tp_python3_ref; // The Python value for this tab page
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3493 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3494 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3495
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3496 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3497 * Structure to cache info for displayed lines in w_lines[].
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3498 * Each logical line has one entry.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3499 * The entry tells how the logical line is currently displayed in the window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3500 * This is updated when displaying the window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3501 * When the display is changed (e.g., when clearing the screen) w_lines_valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3502 * is changed to exclude invalid entries.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3503 * When making changes to the buffer, wl_valid is reset to indicate wl_size
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3504 * may not reflect what is actually in the buffer. When wl_valid is FALSE,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3505 * the entries can only be used to count the number of displayed lines used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3506 * wl_lnum and wl_lastlnum are invalid too.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3507 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3508 typedef struct w_line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3509 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3510 linenr_T wl_lnum; // buffer line number for logical line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3511 short_u wl_size; // height in screen lines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3512 char wl_valid; // TRUE values are valid for text in buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3513 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3514 char wl_folded; // TRUE when this is a range of folded lines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3515 linenr_T wl_lastlnum; // last buffer line number for logical line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3516 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3517 } wline_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3518
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3519 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3520 * Windows are kept in a tree of frames. Each frame has a column (FR_COL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3521 * or row (FR_ROW) layout or is a leaf, which has a window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3522 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3523 struct frame_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3524 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3525 char fr_layout; // FR_LEAF, FR_COL or FR_ROW
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3526 int fr_width;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3527 int fr_newwidth; // new width used in win_equal_rec()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3528 int fr_height;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3529 int fr_newheight; // new height used in win_equal_rec()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3530 frame_T *fr_parent; // containing frame or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3531 frame_T *fr_next; // frame right or below in same parent, NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3532 // for last
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3533 frame_T *fr_prev; // frame left or above in same parent, NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3534 // for first
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3535 // fr_child and fr_win are mutually exclusive
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3536 frame_T *fr_child; // first contained frame
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3537 win_T *fr_win; // window that fills this frame; for a snapshot
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3538 // set to the current window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3539 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3540
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3541 #define FR_LEAF 0 // frame is a leaf
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3542 #define FR_ROW 1 // frame with a row of windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3543 #define FR_COL 2 // frame with a column of windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3544
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3545 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3546 * Struct used for highlighting 'hlsearch' matches, matches defined by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3547 * ":match" and matches defined by match functions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3548 * For 'hlsearch' there is one pattern for all windows. For ":match" and the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3549 * match functions there is a different pattern for each window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3550 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3551 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3552 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3553 regmmatch_T rm; // points to the regexp program; contains last
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3554 // found match (may continue in next line)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3555 buf_T *buf; // the buffer to search for a match
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3556 linenr_T lnum; // the line to search for a match
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3557 int attr; // attributes to be used for a match
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3558 int attr_cur; // attributes currently active in win_line()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3559 linenr_T first_lnum; // first lnum to search for multi-line pat
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3560 colnr_T startcol; // in win_line() points to char where HL starts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3561 colnr_T endcol; // in win_line() points to char where HL ends
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3562 char is_addpos; // position specified directly by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3563 // matchaddpos(). TRUE/FALSE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3564 char has_cursor; // TRUE if the cursor is inside the match, used for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3565 // CurSearch
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3566 } match_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3567
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3568 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3569 * Same as lpos_T, but with additional field len.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3570 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3571 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3572 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3573 linenr_T lnum; // line number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3574 colnr_T col; // column number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3575 int len; // length: 0 - to the end of line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3576 } llpos_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3577
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3578 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3579 * matchitem_T provides a linked list for storing match items for ":match",
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3580 * matchadd() and matchaddpos().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3581 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3582 typedef struct matchitem matchitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3583 struct matchitem
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3584 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3585 matchitem_T *mit_next;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3586 int mit_id; // match ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3587 int mit_priority; // match priority
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3588
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3589 // Either a pattern is defined (mit_pattern is not NUL) or a list of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3590 // positions is given (mit_pos is not NULL and mit_pos_count > 0).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3591 char_u *mit_pattern; // pattern to highlight
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3592 regmmatch_T mit_match; // regexp program for pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3593
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3594 llpos_T *mit_pos_array; // array of positions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3595 int mit_pos_count; // nr of entries in mit_pos
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3596 int mit_pos_cur; // internal position counter
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3597 linenr_T mit_toplnum; // top buffer line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3598 linenr_T mit_botlnum; // bottom buffer line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3599
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3600 match_T mit_hl; // struct for doing the actual highlighting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3601 int mit_hlg_id; // highlight group ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3602 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3603 int mit_conceal_char; // cchar for Conceal highlighting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3604 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3605 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3606
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3607 // Structure to store last cursor position and topline. Used by check_lnums()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3608 // and reset_lnums().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3609 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3610 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3611 int w_topline_save; // original topline value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3612 int w_topline_corr; // corrected topline value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3613 pos_T w_cursor_save; // original cursor position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3614 pos_T w_cursor_corr; // corrected cursor position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3615 } pos_save_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3616
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3617 #ifdef FEAT_MENU
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3618 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3619 int wb_startcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3620 int wb_endcol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3621 vimmenu_T *wb_menu;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3622 } winbar_item_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3623 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3624
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3625 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3626 * Characters from the 'listchars' option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3627 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3628 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3629 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3630 int eol;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3631 int ext;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3632 int prec;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3633 int nbsp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3634 int space;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3635 int tab1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3636 int tab2;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3637 int tab3;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3638 int trail;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3639 int lead;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3640 int *multispace;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3641 int *leadmultispace;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3642 #ifdef FEAT_CONCEAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3643 int conceal;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3644 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3645 } lcs_chars_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3646
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3647 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3648 * Characters from the 'fillchars' option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3649 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3650 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3651 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3652 int stl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3653 int stlnc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3654 int vert;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3655 int fold;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3656 int foldopen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3657 int foldclosed;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3658 int foldsep;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3659 int diff;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3660 int eob;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3661 int lastline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3662 } fill_chars_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3663
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3664 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3665 * Structure which contains all information that belongs to a window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3666 *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3667 * All row numbers are relative to the start of the window, except w_winrow.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3668 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3669 struct window_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3670 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3671 int w_id; // unique window ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3672
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3673 buf_T *w_buffer; // buffer we are a window into
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3674
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3675 win_T *w_prev; // link to previous window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3676 win_T *w_next; // link to next window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3677
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3678 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3679 synblock_T *w_s; // for :ownsyntax
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3680 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3681
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3682 int w_closing; // window is being closed, don't let
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3683 // autocommands close it too.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3684
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3685 frame_T *w_frame; // frame containing this window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3686
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3687 pos_T w_cursor; // cursor position in buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3688
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3689 colnr_T w_curswant; // The column we'd like to be at. This is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3690 // used to try to stay in the same column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3691 // for up/down cursor motions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3692
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3693 int w_set_curswant; // If set, then update w_curswant the next
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3694 // time through cursupdate() to the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3695 // current virtual column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3696
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3697 #ifdef FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3698 linenr_T w_last_cursorline; // where last time 'cursorline' was drawn
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3699 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3700
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3701 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3702 * the next seven are used to update the Visual highlighting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3703 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3704 char w_old_visual_mode; // last known VIsual_mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3705 linenr_T w_old_cursor_lnum; // last known end of visual part
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3706 colnr_T w_old_cursor_fcol; // first column for block visual part
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3707 colnr_T w_old_cursor_lcol; // last column for block visual part
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3708 linenr_T w_old_visual_lnum; // last known start of visual part
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3709 colnr_T w_old_visual_col; // last known start of visual part
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3710 colnr_T w_old_curswant; // last known value of Curswant
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3711
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3712 linenr_T w_last_cursor_lnum_rnu; // cursor lnum when 'rnu' was last
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3713 // redrawn
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3714
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3715 lcs_chars_T w_lcs_chars; // 'listchars' characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3716 fill_chars_T w_fill_chars; // 'fillchars' characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3717
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3718 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3719 * "w_topline", "w_leftcol" and "w_skipcol" specify the offsets for
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3720 * displaying the buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3721 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3722 linenr_T w_topline; // buffer line number of the line at the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3723 // top of the window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3724 char w_topline_was_set; // flag set to TRUE when topline is set,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3725 // e.g. by winrestview()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3726
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3727 linenr_T w_botline; // number of the line below the bottom of
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3728 // the window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3729
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3730 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3731 int w_topfill; // number of filler lines above w_topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3732 int w_old_topfill; // w_topfill at last redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3733 int w_botfill; // TRUE when filler lines are actually
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3734 // below w_topline (at end of file)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3735 int w_old_botfill; // w_botfill at last redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3736 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3737 colnr_T w_leftcol; // screen column number of the left most
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3738 // character in the window; used when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3739 // 'wrap' is off
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3740 colnr_T w_skipcol; // starting screen column for the first
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3741 // line in the window; used when 'wrap' is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3742 // on; does not include win_col_off()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3743
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3744 int w_empty_rows; // number of ~ rows in window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3745 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3746 int w_filler_rows; // number of filler rows at the end of the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3747 // window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3748 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3749
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3750 // six fields that are only used when there is a WinScrolled autocommand
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3751 linenr_T w_last_topline; // last known value for w_topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3752 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3753 int w_last_topfill; // last known value for w_topfill
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3754 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3755 colnr_T w_last_leftcol; // last known value for w_leftcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3756 colnr_T w_last_skipcol; // last known value for w_skipcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3757 int w_last_width; // last known value for w_width
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3758 int w_last_height; // last known value for w_height
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3759
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3760 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3761 * Layout of the window in the screen.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3762 * May need to add "msg_scrolled" to "w_winrow" in rare situations.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3763 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3764 int w_winrow; // first row of window in screen
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3765 int w_height; // number of rows in window, excluding
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3766 // status/command/winbar line(s)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3767 int w_prev_winrow; // previous winrow used for 'splitkeep'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3768 int w_prev_height; // previous height used for 'splitkeep'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3769
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3770 int w_status_height; // number of status lines (0 or 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3771 int w_wincol; // Leftmost column of window in screen.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3772 int w_width; // Width of window, excluding separation.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3773 int w_vsep_width; // Number of separator columns (0 or 1).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3774
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3775 pos_save_T w_save_cursor; // backup of cursor pos and topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3776
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3777 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3778 int w_popup_flags; // POPF_ values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3779 int w_popup_handled; // POPUP_HANDLE[0-9] flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3780 char_u *w_popup_title;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3781 poppos_T w_popup_pos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3782 int w_popup_fixed; // do not shift popup to fit on screen
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3783 int w_popup_prop_type; // when not zero: textprop type ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3784 win_T *w_popup_prop_win; // window to search for textprop
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3785 int w_popup_prop_id; // when not zero: textprop ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3786 int w_zindex;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3787 int w_minheight; // "minheight" for popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3788 int w_minwidth; // "minwidth" for popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3789 int w_maxheight; // "maxheight" for popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3790 int w_maxwidth; // "maxwidth" for popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3791 int w_maxwidth_opt; // maxwidth from option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3792 int w_wantline; // "line" for popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3793 int w_wantcol; // "col" for popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3794 int w_firstline; // "firstline" for popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3795 int w_want_scrollbar; // when zero don't use a scrollbar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3796 int w_has_scrollbar; // 1 if scrollbar displayed, 0 otherwise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3797 char_u *w_scrollbar_highlight; // "scrollbarhighlight"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3798 char_u *w_thumb_highlight; // "thumbhighlight"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3799 int w_popup_padding[4]; // popup padding top/right/bot/left
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3800 int w_popup_border[4]; // popup border top/right/bot/left
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3801 char_u *w_border_highlight[4]; // popup border highlight
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3802 int w_border_char[8]; // popup border characters
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3803
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3804 int w_popup_leftoff; // columns left of the screen
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3805 int w_popup_rightoff; // columns right of the screen
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3806 varnumber_T w_popup_last_changedtick; // b:changedtick of popup buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3807 // when position was computed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3808 varnumber_T w_popup_prop_changedtick; // b:changedtick of buffer with
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3809 // w_popup_prop_type when position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3810 // was computed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3811 int w_popup_prop_topline; // w_topline of window with
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3812 // w_popup_prop_type when position was
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3813 // computed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3814 linenr_T w_popup_last_curline; // last known w_cursor.lnum of window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3815 // with "cursorline" set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3816 callback_T w_close_cb; // popup close callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3817 callback_T w_filter_cb; // popup filter callback
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3818 int w_filter_errors; // popup filter error count
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3819 int w_filter_mode; // mode when filter callback is used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3820
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3821 win_T *w_popup_curwin; // close popup if curwin differs
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3822 linenr_T w_popup_lnum; // close popup if cursor not on this line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3823 colnr_T w_popup_mincol; // close popup if cursor before this col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3824 colnr_T w_popup_maxcol; // close popup if cursor after this col
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3825 int w_popup_mouse_row; // close popup if mouse moves away
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3826 int w_popup_mouse_mincol; // close popup if mouse moves away
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3827 int w_popup_mouse_maxcol; // close popup if mouse moves away
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3828 popclose_T w_popup_close; // allow closing the popup with the mouse
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3829
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3830 list_T *w_popup_mask; // list of lists for "mask"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3831 char_u *w_popup_mask_cells; // cached mask cells
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3832 int w_popup_mask_height; // height of w_popup_mask_cells
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3833 int w_popup_mask_width; // width of w_popup_mask_cells
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3834 # if defined(FEAT_TIMERS)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3835 timer_T *w_popup_timer; // timer for closing popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3836 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3837
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3838 int w_flags; // WFLAG_ flags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3839
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3840 # define WFLAG_WCOL_OFF_ADDED 1 // popup border and padding were added to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3841 // w_wcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3842 # define WFLAG_WROW_OFF_ADDED 2 // popup border and padding were added to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3843 // w_wrow
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3844 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3845
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3846 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3847 * === start of cached values ====
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3848 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3849 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3850 * Recomputing is minimized by storing the result of computations.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3851 * Use functions in screen.c to check if they are valid and to update.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3852 * w_valid is a bitfield of flags, which indicate if specific values are
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3853 * valid or need to be recomputed. See screen.c for values.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3854 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3855 int w_valid;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3856 pos_T w_valid_cursor; // last known position of w_cursor, used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3857 // to adjust w_valid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3858 colnr_T w_valid_leftcol; // last known w_leftcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3859 colnr_T w_valid_skipcol; // last known w_skipcol
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3860
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3861 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3862 * w_cline_height is the number of physical lines taken by the buffer line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3863 * that the cursor is on. We use this to avoid extra calls to plines().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3864 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3865 int w_cline_height; // current size of cursor line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3866 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3867 int w_cline_folded; // cursor line is folded
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3868 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3869
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3870 int w_cline_row; // starting row of the cursor line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3871
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3872 colnr_T w_virtcol; // column number of the cursor in the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3873 // buffer line, as opposed to the column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3874 // number we're at on the screen. This
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3875 // makes a difference on lines which span
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3876 // more than one screen line or when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3877 // w_leftcol is non-zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3878
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3879 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3880 colnr_T w_virtcol_first_char; // offset for w_virtcol when there are
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3881 // virtual text properties above the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3882 // line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3883 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3884 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3885 * w_wrow and w_wcol specify the cursor position in the window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3886 * This is related to positions in the window, not in the display or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3887 * buffer, thus w_wrow is relative to w_winrow.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3888 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3889 int w_wrow, w_wcol; // cursor position in window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3890
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3891 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3892 * Info about the lines currently in the window is remembered to avoid
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3893 * recomputing it every time. The allocated size of w_lines[] is Rows.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3894 * Only the w_lines_valid entries are actually valid.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3895 * When the display is up-to-date w_lines[0].wl_lnum is equal to w_topline
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3896 * and w_lines[w_lines_valid - 1].wl_lnum is equal to w_botline.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3897 * Between changing text and updating the display w_lines[] represents
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3898 * what is currently displayed. wl_valid is reset to indicated this.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3899 * This is used for efficient redrawing.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3900 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3901 int w_lines_valid; // number of valid entries
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3902 wline_T *w_lines;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3903
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3904 #ifdef FEAT_FOLDING
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3905 garray_T w_folds; // array of nested folds
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3906 char w_fold_manual; // when TRUE: some folds are opened/closed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3907 // manually
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3908 char w_foldinvalid; // when TRUE: folding needs to be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3909 // recomputed
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3910 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3911 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3912 int w_nrwidth; // width of 'number' and 'relativenumber'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3913 // column being used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3914 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3915 #ifdef FEAT_TERMINAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3916 termcellcolor_T w_term_wincolor; // cache for term color of 'wincolor'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3917 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3918
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3919 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3920 * === end of cached values ===
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3921 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3922
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3923 int w_redr_type; // type of redraw to be performed on win
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3924 int w_upd_rows; // number of window lines to update when
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3925 // w_redr_type is UPD_REDRAW_TOP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3926 linenr_T w_redraw_top; // when != 0: first line needing redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3927 linenr_T w_redraw_bot; // when != 0: last line needing redraw
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3928 int w_redr_status; // if TRUE status line must be redrawn
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3929
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3930 // remember what is shown in the ruler for this window (if 'ruler' set)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3931 pos_T w_ru_cursor; // cursor position shown in ruler
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3932 colnr_T w_ru_virtcol; // virtcol shown in ruler
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3933 linenr_T w_ru_topline; // topline shown in ruler
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3934 linenr_T w_ru_line_count; // line count used for ruler
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3935 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3936 int w_ru_topfill; // topfill shown in ruler
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3937 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3938 char w_ru_empty; // TRUE if ruler shows 0-1 (empty line)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3939
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3940 int w_alt_fnum; // alternate file (for # and CTRL-^)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3941
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3942 alist_T *w_alist; // pointer to arglist for this window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3943 int w_arg_idx; // current index in argument list (can be
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3944 // out of range!)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3945 int w_arg_idx_invalid; // editing another file than w_arg_idx
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3946
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3947 char_u *w_localdir; // absolute path of local directory or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3948 // NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3949 char_u *w_prevdir; // previous directory
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3950 #ifdef FEAT_MENU
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3951 vimmenu_T *w_winbar; // The root of the WinBar menu hierarchy.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3952 winbar_item_T *w_winbar_items; // list of items in the WinBar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3953 int w_winbar_height; // 1 if there is a window toolbar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3954 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3955
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3956 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3957 * Options local to a window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3958 * They are local because they influence the layout of the window or
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3959 * depend on the window layout.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3960 * There are two values: w_onebuf_opt is local to the buffer currently in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3961 * this window, w_allbuf_opt is for all buffers in this window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3962 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3963 winopt_T w_onebuf_opt;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3964 winopt_T w_allbuf_opt;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3965 // transform a pointer to a "onebuf" option into a "allbuf" option
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3966 #define GLOBAL_WO(p) ((char *)(p) + sizeof(winopt_T))
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3967
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3968 // A few options have local flags for P_INSECURE.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3969 #ifdef FEAT_STL_OPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3970 long_u w_p_stl_flags; // flags for 'statusline'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3971 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3972 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3973 long_u w_p_fde_flags; // flags for 'foldexpr'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3974 long_u w_p_fdt_flags; // flags for 'foldtext'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3975 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3976 #if defined(FEAT_SIGNS) || defined(FEAT_FOLDING) || defined(FEAT_DIFF)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3977 int *w_p_cc_cols; // array of columns to highlight or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3978 char_u w_p_culopt_flags; // flags for cursorline highlighting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3979 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3980 long w_p_siso; // 'sidescrolloff' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3981 long w_p_so; // 'scrolloff' local value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3982
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3983 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3984 int w_briopt_min; // minimum width for breakindent
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3985 int w_briopt_shift; // additional shift for breakindent
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3986 int w_briopt_sbr; // sbr in 'briopt'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3987 int w_briopt_list; // additional indent for lists
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3988 int w_briopt_vcol; // indent for specific column
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3989 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3990
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3991 long w_scbind_pos;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3992
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3993 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3994 dictitem_T w_winvar; // variable for "w:" Dictionary
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3995 dict_T *w_vars; // internal variables, local to window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3996 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3997
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3998 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
3999 * The w_prev_pcmark field is used to check whether we really did jump to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4000 * a new line after setting the w_pcmark. If not, then we revert to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4001 * using the previous w_pcmark.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4002 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4003 pos_T w_pcmark; // previous context mark
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4004 pos_T w_prev_pcmark; // previous w_pcmark
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4005
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4006 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4007 * the jumplist contains old cursor positions
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4008 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4009 xfmark_T w_jumplist[JUMPLISTSIZE];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4010 int w_jumplistlen; // number of active entries
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4011 int w_jumplistidx; // current position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4012
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4013 int w_changelistidx; // current position in b_changelist
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4014
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4015 #ifdef FEAT_SEARCH_EXTRA
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4016 matchitem_T *w_match_head; // head of match list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4017 int w_next_match_id; // next match ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4018 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4019
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4020 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4021 * the tagstack grows from 0 upwards:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4022 * entry 0: older
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4023 * entry 1: newer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4024 * entry 2: newest
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4025 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4026 taggy_T w_tagstack[TAGSTACKSIZE]; // the tag stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4027 int w_tagstackidx; // idx just below active entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4028 int w_tagstacklen; // number of tags on stack
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4029
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4030 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4031 * w_fraction is the fractional row of the cursor within the window, from
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4032 * 0 at the top row to FRACTION_MULT at the last row.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4033 * w_prev_fraction_row was the actual cursor row when w_fraction was last
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4034 * calculated.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4035 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4036 int w_fraction;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4037 int w_prev_fraction_row;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4038
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4039 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4040 scrollbar_T w_scrollbars[2]; // vert. Scrollbars for this window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4041 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4042 #ifdef FEAT_LINEBREAK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4043 linenr_T w_nrwidth_line_count; // line count when ml_nrwidth_width
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4044 // was computed.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4045 long w_nuw_cached; // 'numberwidth' option cached
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4046 int w_nrwidth_width; // nr of chars to print line count.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4047 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4048
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4049 #ifdef FEAT_QUICKFIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4050 qf_info_T *w_llist; // Location list for this window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4051 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4052 * Location list reference used in the location list window.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4053 * In a non-location list window, w_llist_ref is NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4054 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4055 qf_info_T *w_llist_ref;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4056 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4057
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4058 #ifdef FEAT_MZSCHEME
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4059 void *w_mzscheme_ref; // The MzScheme value for this window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4060 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4061
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4062 #ifdef FEAT_PERL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4063 void *w_perl_private;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4064 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4065
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4066 #ifdef FEAT_PYTHON
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4067 void *w_python_ref; // The Python value for this window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4068 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4069
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4070 #ifdef FEAT_PYTHON3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4071 void *w_python3_ref; // The Python value for this window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4072 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4073
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4074 #ifdef FEAT_TCL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4075 void *w_tcl_ref;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4076 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4077
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4078 #ifdef FEAT_RUBY
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4079 void *w_ruby_ref;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4080 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4081 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4082
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4083 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4084 * Arguments for operators.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4085 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4086 typedef struct oparg_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4087 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4088 int op_type; // current pending operator type
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4089 int regname; // register to use for the operator
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4090 int motion_type; // type of the current cursor motion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4091 int motion_force; // force motion type: 'v', 'V' or CTRL-V
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4092 int use_reg_one; // TRUE if delete uses reg 1 even when not
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4093 // linewise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4094 int inclusive; // TRUE if char motion is inclusive (only
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4095 // valid when motion_type is MCHAR)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4096 int end_adjusted; // backuped b_op_end one char (only used by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4097 // do_format())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4098 pos_T start; // start of the operator
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4099 pos_T end; // end of the operator
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4100 pos_T cursor_start; // cursor position before motion for "gw"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4101
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4102 long line_count; // number of lines from op_start to op_end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4103 // (inclusive)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4104 int empty; // op_start and op_end the same (only used by
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4105 // do_change())
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4106 int is_VIsual; // operator on Visual area
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4107 int block_mode; // current operator is Visual block mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4108 colnr_T start_vcol; // start col for block mode operator
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4109 colnr_T end_vcol; // end col for block mode operator
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4110 long prev_opcount; // ca.opcount saved for K_CURSORHOLD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4111 long prev_count0; // ca.count0 saved for K_CURSORHOLD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4112 int excl_tr_ws; // exclude trailing whitespace for yank of a
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4113 // block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4114 } oparg_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4115
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4116 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4117 * Arguments for Normal mode commands.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4118 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4119 typedef struct cmdarg_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4120 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4121 oparg_T *oap; // Operator arguments
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4122 int prechar; // prefix character (optional, always 'g')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4123 int cmdchar; // command character
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4124 int nchar; // next command character (optional)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4125 int ncharC1; // first composing character (optional)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4126 int ncharC2; // second composing character (optional)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4127 int extra_char; // yet another character (optional)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4128 long opcount; // count before an operator
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4129 long count0; // count before command, default 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4130 long count1; // count before command, default 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4131 int arg; // extra argument from nv_cmds[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4132 int retval; // return: CA_* values
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4133 char_u *searchbuf; // return: pointer to search pattern or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4134 } cmdarg_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4135
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4136 // values for retval:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4137 #define CA_COMMAND_BUSY 1 // skip restarting edit() once
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4138 #define CA_NO_ADJ_OP_END 2 // don't adjust operator end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4139
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4140 #ifdef CURSOR_SHAPE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4141 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4142 * struct to store values from 'guicursor' and 'mouseshape'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4143 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4144 // Indexes in shape_table[]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4145 #define SHAPE_IDX_N 0 // Normal mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4146 #define SHAPE_IDX_V 1 // Visual mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4147 #define SHAPE_IDX_I 2 // Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4148 #define SHAPE_IDX_R 3 // Replace mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4149 #define SHAPE_IDX_C 4 // Command line Normal mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4150 #define SHAPE_IDX_CI 5 // Command line Insert mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4151 #define SHAPE_IDX_CR 6 // Command line Replace mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4152 #define SHAPE_IDX_O 7 // Operator-pending mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4153 #define SHAPE_IDX_VE 8 // Visual mode with 'selection' exclusive
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4154 #define SHAPE_IDX_CLINE 9 // On command line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4155 #define SHAPE_IDX_STATUS 10 // A status line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4156 #define SHAPE_IDX_SDRAG 11 // dragging a status line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4157 #define SHAPE_IDX_VSEP 12 // A vertical separator line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4158 #define SHAPE_IDX_VDRAG 13 // dragging a vertical separator line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4159 #define SHAPE_IDX_MORE 14 // Hit-return or More
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4160 #define SHAPE_IDX_MOREL 15 // Hit-return or More in last line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4161 #define SHAPE_IDX_SM 16 // showing matching paren
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4162 #define SHAPE_IDX_COUNT 17
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4163
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4164 #define SHAPE_BLOCK 0 // block cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4165 #define SHAPE_HOR 1 // horizontal bar cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4166 #define SHAPE_VER 2 // vertical bar cursor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4167
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4168 #define MSHAPE_NUMBERED 1000 // offset for shapes identified by number
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4169 #define MSHAPE_HIDE 1 // hide mouse pointer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4170
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4171 #define SHAPE_MOUSE 1 // used for mouse pointer shape
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4172 #define SHAPE_CURSOR 2 // used for text cursor shape
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4173
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4174 typedef struct cursor_entry
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4175 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4176 int shape; // one of the SHAPE_ defines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4177 int mshape; // one of the MSHAPE defines
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4178 int percentage; // percentage of cell for bar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4179 long blinkwait; // blinking, wait time before blinking starts
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4180 long blinkon; // blinking, on time
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4181 long blinkoff; // blinking, off time
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4182 int id; // highlight group ID
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4183 int id_lm; // highlight group ID for :lmap mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4184 char *name; // mode name (fixed)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4185 char used_for; // SHAPE_MOUSE and/or SHAPE_CURSOR
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4186 } cursorentry_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4187 #endif // CURSOR_SHAPE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4188
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4189 #ifdef FEAT_MENU
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4190
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4191 // Indices into vimmenu_T->strings[] and vimmenu_T->noremap[] for each mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4192 #define MENU_INDEX_INVALID -1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4193 #define MENU_INDEX_NORMAL 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4194 #define MENU_INDEX_VISUAL 1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4195 #define MENU_INDEX_SELECT 2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4196 #define MENU_INDEX_OP_PENDING 3
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4197 #define MENU_INDEX_INSERT 4
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4198 #define MENU_INDEX_CMDLINE 5
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4199 #define MENU_INDEX_TERMINAL 6
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4200 #define MENU_INDEX_TIP 7
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4201 #define MENU_MODES 8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4202
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4203 // Menu modes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4204 #define MENU_NORMAL_MODE (1 << MENU_INDEX_NORMAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4205 #define MENU_VISUAL_MODE (1 << MENU_INDEX_VISUAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4206 #define MENU_SELECT_MODE (1 << MENU_INDEX_SELECT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4207 #define MENU_OP_PENDING_MODE (1 << MENU_INDEX_OP_PENDING)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4208 #define MENU_INSERT_MODE (1 << MENU_INDEX_INSERT)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4209 #define MENU_CMDLINE_MODE (1 << MENU_INDEX_CMDLINE)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4210 #define MENU_TERMINAL_MODE (1 << MENU_INDEX_TERMINAL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4211 #define MENU_TIP_MODE (1 << MENU_INDEX_TIP)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4212 #define MENU_ALL_MODES ((1 << MENU_INDEX_TIP) - 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4213 // note MENU_INDEX_TIP is not a 'real' mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4214
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4215 // Start a menu name with this to not include it on the main menu bar
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4216 #define MNU_HIDDEN_CHAR ']'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4217
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4218 struct VimMenu
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4219 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4220 int modes; // Which modes is this menu visible for?
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4221 int enabled; // for which modes the menu is enabled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4222 char_u *name; // Name of menu, possibly translated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4223 char_u *dname; // Displayed Name ("name" without '&')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4224 #ifdef FEAT_MULTI_LANG
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4225 char_u *en_name; // "name" untranslated, NULL when "name"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4226 // was not translated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4227 char_u *en_dname; // "dname" untranslated, NULL when "dname"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4228 // was not translated
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4229 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4230 char_u *actext; // accelerator text (after TAB)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4231 int mnemonic; // mnemonic key (after '&')
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4232 int priority; // Menu order priority
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4233 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4234 void (*cb)(vimmenu_T *); // Call-back function
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4235 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4236 #ifdef FEAT_TOOLBAR
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4237 char_u *iconfile; // name of file for icon or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4238 int iconidx; // icon index (-1 if not set)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4239 int icon_builtin; // icon names is BuiltIn{nr}
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4240 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4241 char_u *strings[MENU_MODES]; // Mapped string for each mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4242 int noremap[MENU_MODES]; // A REMAP_ flag for each mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4243 char silent[MENU_MODES]; // A silent flag for each mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4244 vimmenu_T *children; // Children of sub-menu
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4245 vimmenu_T *parent; // Parent of menu
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4246 vimmenu_T *next; // Next item in menu
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4247 #ifdef FEAT_GUI_X11
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4248 Widget id; // Manage this to enable item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4249 Widget submenu_id; // If this is submenu, add children here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4250 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4251 #ifdef FEAT_GUI_GTK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4252 GtkWidget *id; // Manage this to enable item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4253 GtkWidget *submenu_id; // If this is submenu, add children here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4254 # if defined(GTK_CHECK_VERSION) && !GTK_CHECK_VERSION(3,4,0)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4255 GtkWidget *tearoff_handle;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4256 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4257 GtkWidget *label; // Used by "set wak=" code.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4258 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4259 #ifdef FEAT_GUI_MOTIF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4260 int sensitive; // turn button on/off
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4261 char **xpm; // pixmap data
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4262 char *xpm_fname; // file with pixmap data
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4263 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4264 #ifdef FEAT_BEVAL_TIP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4265 BalloonEval *tip; // tooltip for this menu item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4266 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4267 #ifdef FEAT_GUI_MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4268 UINT id; // Id of menu item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4269 HMENU submenu_id; // If this is submenu, add children here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4270 HWND tearoff_handle; // hWnd of tearoff if created
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4271 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4272 #if FEAT_GUI_HAIKU
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4273 BMenuItem *id; // Id of menu item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4274 BMenu *submenu_id; // If this is submenu, add children here
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4275 # ifdef FEAT_TOOLBAR
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4276 BPictureButton *button;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4277 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4278 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4279 #ifdef FEAT_GUI_PHOTON
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4280 PtWidget_t *id;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4281 PtWidget_t *submenu_id;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4282 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4283 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4284 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4285 // For generating prototypes when FEAT_MENU isn't defined.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4286 typedef int vimmenu_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4287
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4288 #endif // FEAT_MENU
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4289
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4290 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4291 * Struct to save values in before executing autocommands for a buffer that is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4292 * not the current buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4293 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4294 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4295 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4296 buf_T *save_curbuf; // saved curbuf
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4297 int use_aucmd_win_idx; // index in aucmd_win[] if >= 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4298 int save_curwin_id; // ID of saved curwin
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4299 int new_curwin_id; // ID of new curwin
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4300 int save_prevwin_id; // ID of saved prevwin
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4301 bufref_T new_curbuf; // new curbuf
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4302 char_u *globaldir; // saved value of globaldir
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4303 int save_VIsual_active; // saved VIsual_active
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4304 int save_State; // saved State
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4305 } aco_save_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4306
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4307 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4308 * Generic option table item, only used for printer at the moment.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4309 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4310 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4311 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4312 const char *name;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4313 int hasnum;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4314 long number;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4315 char_u *string; // points into option string
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4316 int strlen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4317 int present;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4318 } option_table_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4319
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4320 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4321 * Structure to hold printing color and font attributes.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4322 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4323 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4324 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4325 long_u fg_color;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4326 long_u bg_color;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4327 int bold;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4328 int italic;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4329 int underline;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4330 int undercurl;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4331 } prt_text_attr_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4332
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4333 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4334 * Structure passed back to the generic printer code.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4335 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4336 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4337 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4338 int n_collated_copies;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4339 int n_uncollated_copies;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4340 int duplex;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4341 int chars_per_line;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4342 int lines_per_page;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4343 int has_color;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4344 prt_text_attr_T number;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4345 #ifdef FEAT_SYN_HL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4346 int modec;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4347 int do_syntax;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4348 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4349 int user_abort;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4350 char_u *jobname;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4351 #ifdef FEAT_POSTSCRIPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4352 char_u *outfile;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4353 char_u *arguments;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4354 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4355 } prt_settings_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4356
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4357 #define PRINT_NUMBER_WIDTH 8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4358
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4359 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4360 * Used for popup menu items.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4361 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4362 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4363 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4364 char_u *pum_text; // main menu text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4365 char_u *pum_kind; // extra kind text (may be truncated)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4366 char_u *pum_extra; // extra menu text (may be truncated)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4367 char_u *pum_info; // extra info
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4368 } pumitem_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4369
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4370 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4371 * Structure used for get_tagfname().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4372 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4373 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4374 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4375 char_u *tn_tags; // value of 'tags' when starting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4376 char_u *tn_np; // current position in tn_tags
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4377 int tn_did_filefind_init;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4378 int tn_hf_idx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4379 void *tn_search_ctx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4380 } tagname_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4381
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4382 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4383 UINT32_T total[2];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4384 UINT32_T state[8];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4385 char_u buffer[64];
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4386 } context_sha256_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4387
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4388 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4389 * types for expressions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4390 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4391 typedef enum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4392 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4393 EXPR_UNKNOWN = 0,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4394 EXPR_EQUAL, // ==
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4395 EXPR_NEQUAL, // !=
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4396 EXPR_GREATER, // >
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4397 EXPR_GEQUAL, // >=
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4398 EXPR_SMALLER, // <
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4399 EXPR_SEQUAL, // <=
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4400 EXPR_MATCH, // =~
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4401 EXPR_NOMATCH, // !~
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4402 EXPR_IS, // is
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4403 EXPR_ISNOT, // isnot
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4404 // used with ISN_OPNR
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4405 EXPR_ADD, // +
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4406 EXPR_SUB, // -
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4407 EXPR_MULT, // *
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4408 EXPR_DIV, // /
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4409 EXPR_REM, // %
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4410 EXPR_LSHIFT, // <<
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4411 EXPR_RSHIFT, // >>
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4412 // used with ISN_ADDLIST
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4413 EXPR_COPY, // create new list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4414 EXPR_APPEND, // append to first list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4415 } exprtype_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4416
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4417 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4418 * Structure used for reading in json_decode().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4419 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4420 struct js_reader
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4421 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4422 char_u *js_buf; // text to be decoded
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4423 char_u *js_end; // NUL in js_buf
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4424 int js_used; // bytes used from js_buf
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4425 int (*js_fill)(struct js_reader *);
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4426 // function to fill the buffer or NULL;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4427 // return TRUE when the buffer was filled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4428 void *js_cookie; // can be used by js_fill
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4429 int js_cookie_arg; // can be used by js_fill
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4430 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4431 typedef struct js_reader js_read_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4432
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4433 // Maximum number of commands from + or -c arguments.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4434 #define MAX_ARG_CMDS 10
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4435
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4436 // values for "window_layout"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4437 #define WIN_HOR 1 // "-o" horizontally split windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4438 #define WIN_VER 2 // "-O" vertically split windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4439 #define WIN_TABS 3 // "-p" windows on tab pages
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4440
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4441 // Struct for various parameters passed between main() and other functions.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4442 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4443 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4444 int argc;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4445 char **argv;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4446
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4447 char_u *fname; // first file to edit
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4448
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4449 int evim_mode; // started as "evim"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4450 char_u *use_vimrc; // vimrc from -u argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4451 int clean; // --clean argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4452
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4453 int n_commands; // no. of commands from + or -c
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4454 char_u *commands[MAX_ARG_CMDS]; // commands from + or -c arg.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4455 char_u cmds_tofree[MAX_ARG_CMDS]; // commands that need free()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4456 int n_pre_commands; // no. of commands from --cmd
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4457 char_u *pre_commands[MAX_ARG_CMDS]; // commands from --cmd argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4458
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4459 int edit_type; // type of editing to do
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4460 char_u *tagname; // tag from -t argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4461 #ifdef FEAT_QUICKFIX
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4462 char_u *use_ef; // 'errorfile' from -q argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4463 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4464
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4465 int want_full_screen;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4466 int not_a_term; // no warning for missing term?
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4467 #ifdef FEAT_GUI
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4468 char_u *gui_dialog_file; // file to write dialog text in
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4469 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4470 int tty_fail; // exit if not a tty
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4471 char_u *term; // specified terminal name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4472 #ifdef FEAT_CRYPT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4473 int ask_for_key; // -x argument
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4474 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4475 int no_swap_file; // "-n" argument used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4476 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4477 int use_debug_break_level;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4478 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4479 int window_count; // number of windows to use
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4480 int window_layout; // 0, WIN_HOR, WIN_VER or WIN_TABS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4481
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4482 #ifdef FEAT_CLIENTSERVER
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4483 int serverArg; // TRUE when argument for a server
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4484 char_u *serverName_arg; // cmdline arg for server name
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4485 char_u *serverStr; // remote server command
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4486 char_u *serverStrEnc; // encoding of serverStr
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4487 char_u *servername; // allocated name for our server
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4488 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4489 #if !defined(UNIX)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4490 # define EXPAND_FILENAMES
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4491 int literal; // don't expand file names
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4492 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4493 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4494 int full_path; // file name argument was full path
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4495 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4496 #ifdef FEAT_DIFF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4497 int diff_mode; // start with 'diff' set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4498 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4499 } mparm_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4500
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4501 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4502 * Structure returned by get_lval() and used by set_var_lval().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4503 * For a plain name:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4504 * "name" points to the variable name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4505 * "exp_name" is NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4506 * "tv" is NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4507 * For a magic braces name:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4508 * "name" points to the expanded variable name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4509 * "exp_name" is non-NULL, to be freed later.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4510 * "tv" is NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4511 * For an index in a list:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4512 * "name" points to the (expanded) variable name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4513 * "exp_name" NULL or non-NULL, to be freed later.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4514 * "tv" points to the (first) list item value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4515 * "li" points to the (first) list item
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4516 * "range", "n1", "n2" and "empty2" indicate what items are used.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4517 * For an existing Dict item:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4518 * "name" points to the (expanded) variable name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4519 * "exp_name" NULL or non-NULL, to be freed later.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4520 * "tv" points to the dict item value
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4521 * "newkey" is NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4522 * For a non-existing Dict item:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4523 * "name" points to the (expanded) variable name.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4524 * "exp_name" NULL or non-NULL, to be freed later.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4525 * "tv" points to the Dictionary typval_T
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4526 * "newkey" is the key for the new item.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4527 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4528 typedef struct lval_S
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4529 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4530 char_u *ll_name; // start of variable name (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4531 char_u *ll_name_end; // end of variable name (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4532 type_T *ll_type; // type of variable (can be NULL)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4533 char_u *ll_exp_name; // NULL or expanded name in allocated memory.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4534
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4535 scid_T ll_sid; // for an imported item: the script ID it was
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4536 // imported from; zero otherwise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4537
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4538 typval_T *ll_tv; // Typeval of item being used. If "newkey"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4539 // isn't NULL it's the Dict to which to add
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4540 // the item.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4541 listitem_T *ll_li; // The list item or NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4542 list_T *ll_list; // The list or NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4543 int ll_range; // TRUE when a [i:j] range was used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4544 int ll_empty2; // Second index is empty: [i:]
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4545 long ll_n1; // First index for list
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4546 long ll_n2; // Second index for list range
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4547 dict_T *ll_dict; // The Dictionary or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4548 dictitem_T *ll_di; // The dictitem or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4549 char_u *ll_newkey; // New key for Dict in alloc. mem or NULL.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4550 type_T *ll_valtype; // type expected for the value or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4551 blob_T *ll_blob; // The Blob or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4552 ufunc_T *ll_ufunc; // The function or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4553 } lval_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4554
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4555 // Structure used to save the current state. Used when executing Normal mode
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4556 // commands while in any other mode.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4557 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4558 int save_msg_scroll;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4559 int save_restart_edit;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4560 int save_msg_didout;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4561 int save_State;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4562 int save_insertmode;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4563 int save_finish_op;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4564 int save_opcount;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4565 int save_reg_executing;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4566 int save_pending_end_reg_executing;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4567 int save_script_version;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4568 tasave_T tabuf;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4569 } save_state_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4570
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4571 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4572 varnumber_T vv_prevcount;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4573 varnumber_T vv_count;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4574 varnumber_T vv_count1;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4575 } vimvars_save_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4576
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4577 // Scope for changing directory
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4578 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4579 CDSCOPE_GLOBAL, // :cd
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4580 CDSCOPE_TABPAGE, // :tcd
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4581 CDSCOPE_WINDOW // :lcd
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4582 } cdscope_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4583
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4584 // Variable flavor
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4585 typedef enum
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4586 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4587 VAR_FLAVOUR_DEFAULT, // doesn't start with uppercase
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4588 VAR_FLAVOUR_SESSION, // starts with uppercase, some lower
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4589 VAR_FLAVOUR_VIMINFO // all uppercase
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4590 } var_flavour_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4591
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4592 // argument for mouse_find_win()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4593 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4594 IGNORE_POPUP, // only check non-popup windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4595 FIND_POPUP, // also find popup windows
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4596 FAIL_POPUP // return NULL if mouse on popup window
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4597 } mouse_find_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4598
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4599 // Symbolic names for some registers.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4600 #define DELETION_REGISTER 36
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4601 #ifdef FEAT_CLIPBOARD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4602 # define STAR_REGISTER 37
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4603 # ifdef FEAT_X11
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4604 # define PLUS_REGISTER 38
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4605 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4606 # define PLUS_REGISTER STAR_REGISTER // there is only one
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4607 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4608 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4609 #ifdef FEAT_DND
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4610 # define TILDE_REGISTER (PLUS_REGISTER + 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4611 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4612
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4613 #ifdef FEAT_CLIPBOARD
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4614 # ifdef FEAT_DND
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4615 # define NUM_REGISTERS (TILDE_REGISTER + 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4616 # else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4617 # define NUM_REGISTERS (PLUS_REGISTER + 1)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4618 # endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4619 #else
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4620 # define NUM_REGISTERS 37
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4621 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4622
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4623 // structure used by block_prep, op_delete and op_yank for blockwise operators
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4624 // also op_change, op_shift, op_insert, op_replace - AKelly
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4625 struct block_def
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4626 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4627 int startspaces; // 'extra' cols before first char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4628 int endspaces; // 'extra' cols after last char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4629 int textlen; // chars in block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4630 char_u *textstart; // pointer to 1st char (partially) in block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4631 colnr_T textcol; // index of chars (partially) in block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4632 colnr_T start_vcol; // start col of 1st char wholly inside block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4633 colnr_T end_vcol; // start col of 1st char wholly after block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4634 int is_short; // TRUE if line is too short to fit in block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4635 int is_MAX; // TRUE if curswant==MAXCOL when starting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4636 int is_oneChar; // TRUE if block within one character
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4637 int pre_whitesp; // screen cols of ws before block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4638 int pre_whitesp_c; // chars of ws before block
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4639 colnr_T end_char_vcols; // number of vcols of post-block char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4640 colnr_T start_char_vcols; // number of vcols of pre-block char
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4641 };
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4642
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4643 // Each yank register has an array of pointers to lines.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4644 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4645 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4646 char_u **y_array; // pointer to array of line pointers
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4647 linenr_T y_size; // number of lines in y_array
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4648 char_u y_type; // MLINE, MCHAR or MBLOCK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4649 colnr_T y_width; // only set if y_type == MBLOCK
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4650 #ifdef FEAT_VIMINFO
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4651 time_t y_time_set;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4652 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4653 } yankreg_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4654
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4655 // The offset for a search command is store in a soff struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4656 // Note: only spats[0].off is really used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4657 typedef struct soffset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4658 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4659 int dir; // search direction, '/' or '?'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4660 int line; // search has line offset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4661 int end; // search set cursor at end
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4662 long off; // line or char offset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4663 } soffset_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4664
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4665 // A search pattern and its attributes are stored in a spat struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4666 typedef struct spat
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4667 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4668 char_u *pat; // the pattern (in allocated memory) or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4669 int magic; // magicness of the pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4670 int no_scs; // no smartcase for this pattern
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4671 soffset_T off;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4672 } spat_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4673
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4674 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4675 * Optional extra arguments for searchit().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4676 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4677 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4678 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4679 linenr_T sa_stop_lnum; // stop after this line number when != 0
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4680 #ifdef FEAT_RELTIME
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4681 long sa_tm; // timeout limit or zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4682 int sa_timed_out; // set when timed out
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4683 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4684 int sa_wrapped; // search wrapped around
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4685 } searchit_arg_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4686
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4687 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4688 * Cookie used by getsourceline().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4689 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4690 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4691 * Cookie used to store info for each sourced file.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4692 * It is shared between do_source() and getsourceline().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4693 * This is passed to do_cmdline().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4694 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4695 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4696 FILE *fp; // opened file for sourcing
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4697 char_u *nextline; // if not NULL: line that was read ahead
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4698 linenr_T sourcing_lnum; // line number of the source file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4699 int finished; // ":finish" used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4700 int source_from_buf;// TRUE if sourcing from current buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4701 int buf_lnum; // line number in the current buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4702 garray_T buflines; // lines in the current buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4703 #ifdef USE_CRNL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4704 int fileformat; // EOL_UNKNOWN, EOL_UNIX or EOL_DOS
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4705 int error; // TRUE if LF found after CR-LF
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4706 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4707 #ifdef FEAT_EVAL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4708 linenr_T breakpoint; // next line with breakpoint or zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4709 char_u *fname; // name of sourced file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4710 int dbg_tick; // debug_tick when breakpoint was set
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4711 int level; // top nesting level of sourced file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4712 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4713 vimconv_T conv; // type of conversion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4714 } source_cookie_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4715
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4716
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4717 #define WRITEBUFSIZE 8192 // size of normal write buffer
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4718
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4719 #define FIO_LATIN1 0x01 // convert Latin1
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4720 #define FIO_UTF8 0x02 // convert UTF-8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4721 #define FIO_UCS2 0x04 // convert UCS-2
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4722 #define FIO_UCS4 0x08 // convert UCS-4
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4723 #define FIO_UTF16 0x10 // convert UTF-16
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4724 #ifdef MSWIN
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4725 # define FIO_CODEPAGE 0x20 // convert MS-Windows codepage
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4726 # define FIO_PUT_CP(x) (((x) & 0xffff) << 16) // put codepage in top word
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4727 # define FIO_GET_CP(x) (((x)>>16) & 0xffff) // get codepage from top word
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4728 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4729 #ifdef MACOS_CONVERT
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4730 # define FIO_MACROMAN 0x20 // convert MacRoman
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4731 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4732 #define FIO_ENDIAN_L 0x80 // little endian
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4733 #define FIO_ENCRYPTED 0x1000 // encrypt written bytes
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4734 #define FIO_NOCONVERT 0x2000 // skip encoding conversion
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4735 #define FIO_UCSBOM 0x4000 // check for BOM at start of file
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4736 #define FIO_ALL (-1) // allow all formats
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4737
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4738 // When converting, a read() or write() may leave some bytes to be converted
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4739 // for the next call. The value is guessed...
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4740 #define CONV_RESTLEN 30
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4741
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4742 // We have to guess how much a sequence of bytes may expand when converting
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4743 // with iconv() to be able to allocate a buffer.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4744 #define ICONV_MULT 8
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4745
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4746 // Used for "magic_overruled".
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4747 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4748 OPTION_MAGIC_NOT_SET, // p_magic not overruled
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4749 OPTION_MAGIC_ON, // magic on inside regexp
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4750 OPTION_MAGIC_OFF // magic off inside regexp
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4751 } optmagic_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4752
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4753 // Magicness of a pattern, used by regexp code.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4754 // The order and values matter:
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4755 // magic <= MAGIC_OFF includes MAGIC_NONE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4756 // magic >= MAGIC_ON includes MAGIC_ALL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4757 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4758 MAGIC_NONE = 1, // "\V" very unmagic
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4759 MAGIC_OFF = 2, // "\M" or 'magic' off
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4760 MAGIC_ON = 3, // "\m" or 'magic'
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4761 MAGIC_ALL = 4 // "\v" very magic
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4762 } magic_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4763
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4764 // Struct used to pass to error messages about where the error happened.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4765 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4766 char *wt_func_name; // function name or NULL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4767 char wt_index; // argument or variable index, 0 means unknown
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4768 char wt_variable; // "variable" when TRUE, "argument" otherwise
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4769 } where_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4770
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4771 #define WHERE_INIT {NULL, 0, 0}
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4772
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4773 // Struct passed to get_v_event() and restore_v_event().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4774 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4775 int sve_did_save;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4776 hashtab_T sve_hashtab;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4777 } save_v_event_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4778
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4779 // Enum used by filter(), map() and mapnew()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4780 typedef enum {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4781 FILTERMAP_FILTER,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4782 FILTERMAP_MAP,
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4783 FILTERMAP_MAPNEW
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4784 } filtermap_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4785
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4786 // Structure used by switch_win() to pass values to restore_win()
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4787 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4788 win_T *sw_curwin;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4789 tabpage_T *sw_curtab;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4790 int sw_same_win; // VIsual_active was not reset
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4791 int sw_visual_active;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4792 } switchwin_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4793
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4794 // Fuzzy matched string list item. Used for fuzzy match completion. Items are
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4795 // usually sorted by 'score'. The 'idx' member is used for stable-sort.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4796 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4797 int idx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4798 char_u *str;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4799 int score;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4800 } fuzmatch_str_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4801
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4802 // Argument for lbr_chartabsize().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4803 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4804 win_T *cts_win;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4805 char_u *cts_line; // start of the line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4806 char_u *cts_ptr; // current position in line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4807 #ifdef FEAT_PROP_POPUP
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4808 int cts_text_prop_count; // number of text props; when zero
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4809 // cts_text_props is not used
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4810 textprop_T *cts_text_props; // text props (allocated)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4811 char cts_has_prop_with_text; // TRUE if a property inserts text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4812 int cts_cur_text_width; // width of current inserted text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4813 int cts_prop_lines; // nr of properties above or below
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4814 int cts_first_char; // width text props above the line
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4815 int cts_with_trailing; // include size of trailing props with
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4816 // last character
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4817 int cts_start_incl; // prop has true "start_incl" arg
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4818 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4819 int cts_vcol; // virtual column at current position
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4820 } chartabsize_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4821
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4822 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4823 * Argument for the callback function (opt_did_set_cb_T) invoked after an
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4824 * option value is modified.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4825 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4826 typedef struct
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4827 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4828 // Pointer to the option variable. The variable can be a long (numeric
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4829 // option), an int (boolean option) or a char pointer (string option).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4830 char_u *os_varp;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4831 int os_idx;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4832 int os_flags;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4833
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4834 // old value of the option (can be a string, number or a boolean)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4835 union
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4836 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4837 long number;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4838 int boolean;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4839 char_u *string;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4840 } os_oldval;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4841
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4842 // new value of the option (can be a string, number or a boolean)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4843 union
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4844 {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4845 long number;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4846 int boolean;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4847 char_u *string;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4848 } os_newval;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4849
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4850 // When set by the called function: Stop processing the option further.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4851 // Currently only used for boolean options.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4852 int os_doskip;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4853
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4854 // Option value was checked to be safe, no need to set P_INSECURE
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4855 // Used for the 'keymap', 'filetype' and 'syntax' options.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4856 int os_value_checked;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4857 // Option value changed. Used for the 'filetype' and 'syntax' options.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4858 int os_value_changed;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4859
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4860 // Used by the 'isident', 'iskeyword', 'isprint' and 'isfname' options.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4861 // Set to TRUE if the character table is modified when processing the
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4862 // option and need to be restored because of a failure.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4863 int os_restore_chartab;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4864
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4865 #if defined(FEAT_VTP) && defined(FEAT_TERMGUICOLORS)
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4866 // Used by the 't_xxx' terminal options on MS-Windows.
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4867 int os_did_swaptcap;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4868 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4869
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4870 // If the value specified for an option is not valid and the error message
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4871 // is parameterized, then the "os_errbuf" buffer is used to store the error
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4872 // message (when it is not NULL).
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4873 char *os_errbuf;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4874 } optset_T;
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4875
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4876 /*
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4877 * Spell checking variables passed from win_update() to win_line().
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4878 */
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4879 typedef struct {
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4880 int spv_has_spell; // drawn window has spell checking
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4881 #ifdef FEAT_SPELL
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4882 int spv_unchanged; // not updating for changed text
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4883 int spv_checked_col; // column in "checked_lnum" up to
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4884 // which there are no spell errors
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4885 linenr_T spv_checked_lnum; // line number for "checked_col"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4886 int spv_cap_col; // column to check for Cap word
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4887 linenr_T spv_capcol_lnum; // line number for "cap_col"
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4888 #endif
448aef880252 normalize line endings
Christian Brabandt <cb@256bit.org>
parents: 32584
diff changeset
4889 } spellvars_T;