Mercurial > vim
annotate src/quickfix.c @ 9473:bdac1019552f v7.4.2017
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 10 17:00:38 2016 +0200
patch 7.4.2017
Problem: When there are many errors adding them to the quickfix list takes
a long time.
Solution: Add BLN_NOOPT. Don't call buf_valid() in buf_copy_options().
Remember the last file name used. When going through the buffer
list start from the end of the list. Only call buf_valid() when
autocommands were executed.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 10 Jul 2016 17:15:05 +0200 |
parents | 374afcf9d11d |
children | 4d8f7f8da90c |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * quickfix.c: functions for quickfix mode, using a file with error messages | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
16 #if defined(FEAT_QUICKFIX) || defined(PROTO) | |
17 | |
18 struct dir_stack_T | |
19 { | |
20 struct dir_stack_T *next; | |
21 char_u *dirname; | |
22 }; | |
23 | |
24 /* | |
230 | 25 * For each error the next struct is allocated and linked in a list. |
7 | 26 */ |
230 | 27 typedef struct qfline_S qfline_T; |
28 struct qfline_S | |
7 | 29 { |
230 | 30 qfline_T *qf_next; /* pointer to next error in the list */ |
31 qfline_T *qf_prev; /* pointer to previous error in the list */ | |
32 linenr_T qf_lnum; /* line number where the error occurred */ | |
33 int qf_fnum; /* file number for the line */ | |
34 int qf_col; /* column where the error occurred */ | |
35 int qf_nr; /* error number */ | |
36 char_u *qf_pattern; /* search pattern for the error */ | |
37 char_u *qf_text; /* description of the error */ | |
38 char_u qf_viscol; /* set to TRUE if qf_col is screen column */ | |
39 char_u qf_cleared; /* set to TRUE if line has been deleted */ | |
40 char_u qf_type; /* type of the error (mostly 'E'); 1 for | |
7 | 41 :helpgrep */ |
230 | 42 char_u qf_valid; /* valid error message detected */ |
7 | 43 }; |
44 | |
45 /* | |
46 * There is a stack of error lists. | |
47 */ | |
48 #define LISTCOUNT 10 | |
49 | |
644 | 50 typedef struct qf_list_S |
7 | 51 { |
230 | 52 qfline_T *qf_start; /* pointer to the first error */ |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
53 qfline_T *qf_last; /* pointer to the last error */ |
230 | 54 qfline_T *qf_ptr; /* pointer to the current error */ |
55 int qf_count; /* number of errors (0 means no error list) */ | |
56 int qf_index; /* current index in the error list */ | |
57 int qf_nonevalid; /* TRUE if not a single valid entry found */ | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
58 char_u *qf_title; /* title derived from the command that created |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
59 * the error list */ |
644 | 60 } qf_list_T; |
61 | |
62 struct qf_info_S | |
63 { | |
64 /* | |
65 * Count of references to this list. Used only for location lists. | |
66 * When a location list window reference this list, qf_refcount | |
67 * will be 2. Otherwise, qf_refcount will be 1. When qf_refcount | |
68 * reaches 0, the list is freed. | |
69 */ | |
70 int qf_refcount; | |
71 int qf_listcount; /* current number of lists */ | |
72 int qf_curlist; /* current error list */ | |
73 qf_list_T qf_lists[LISTCOUNT]; | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
74 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
75 int qf_dir_curlist; /* error list for qf_dir_stack */ |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
76 struct dir_stack_T *qf_dir_stack; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
77 char_u *qf_directory; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
78 struct dir_stack_T *qf_file_stack; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
79 char_u *qf_currfile; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
80 int qf_multiline; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
81 int qf_multiignore; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
82 int qf_multiscan; |
644 | 83 }; |
84 | |
85 static qf_info_T ql_info; /* global quickfix list */ | |
7 | 86 |
230 | 87 #define FMT_PATTERNS 10 /* maximum number of % recognized */ |
7 | 88 |
89 /* | |
90 * Structure used to hold the info of one part of 'errorformat' | |
91 */ | |
789 | 92 typedef struct efm_S efm_T; |
93 struct efm_S | |
7 | 94 { |
95 regprog_T *prog; /* pre-formatted part of 'errorformat' */ | |
789 | 96 efm_T *next; /* pointer to next (NULL if last) */ |
7 | 97 char_u addr[FMT_PATTERNS]; /* indices of used % patterns */ |
98 char_u prefix; /* prefix of this format line: */ | |
99 /* 'D' enter directory */ | |
100 /* 'X' leave directory */ | |
101 /* 'A' start of multi-line message */ | |
102 /* 'E' error message */ | |
103 /* 'W' warning message */ | |
104 /* 'I' informational message */ | |
105 /* 'C' continuation line */ | |
106 /* 'Z' end of multi-line message */ | |
107 /* 'G' general, unspecific message */ | |
108 /* 'P' push file (partial) message */ | |
109 /* 'Q' pop/quit file (partial) message */ | |
110 /* 'O' overread (partial) message */ | |
111 char_u flags; /* additional flags given in prefix */ | |
112 /* '-' do not include this line */ | |
625 | 113 /* '+' include whole line in message */ |
789 | 114 int conthere; /* %> used */ |
7 | 115 }; |
116 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
117 static int qf_init_ext(qf_info_T *qi, char_u *efile, buf_T *buf, typval_T *tv, char_u *errorformat, int newlist, linenr_T lnumfirst, linenr_T lnumlast, char_u *qf_title); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
118 static void qf_store_title(qf_info_T *qi, char_u *title); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
119 static void qf_new_list(qf_info_T *qi, char_u *qf_title); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
120 static void ll_free_all(qf_info_T **pqi); |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
121 static int qf_add_entry(qf_info_T *qi, char_u *dir, char_u *fname, int bufnum, char_u *mesg, long lnum, int col, int vis_col, char_u *pattern, int nr, int type, int valid); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
122 static qf_info_T *ll_new_list(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
123 static void qf_msg(qf_info_T *qi); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
124 static void qf_free(qf_info_T *qi, int idx); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
125 static char_u *qf_types(int, int); |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
126 static int qf_get_fnum(qf_info_T *qi, char_u *, char_u *); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
127 static char_u *qf_push_dir(char_u *, struct dir_stack_T **, int is_file_stack); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
128 static char_u *qf_pop_dir(struct dir_stack_T **); |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
129 static char_u *qf_guess_filepath(qf_info_T *qi, char_u *); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
130 static void qf_fmt_text(char_u *text, char_u *buf, int bufsize); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
131 static void qf_clean_dir_stack(struct dir_stack_T **); |
7 | 132 #ifdef FEAT_WINDOWS |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
133 static int qf_win_pos_update(qf_info_T *qi, int old_qf_index); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
134 static int is_qf_win(win_T *win, qf_info_T *qi); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
135 static win_T *qf_find_win(qf_info_T *qi); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
136 static buf_T *qf_find_buf(qf_info_T *qi); |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
137 static void qf_update_buffer(qf_info_T *qi, qfline_T *old_last); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
138 static void qf_set_title_var(qf_info_T *qi); |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
139 static void qf_fill_buffer(qf_info_T *qi, buf_T *buf, qfline_T *old_last); |
7 | 140 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
141 static char_u *get_mef_name(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
142 static void restore_start_dir(char_u *dirname_start); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
143 static buf_T *load_dummy_buffer(char_u *fname, char_u *dirname_start, char_u *resulting_dir); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
144 static void wipe_dummy_buffer(buf_T *buf, char_u *dirname_start); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
145 static void unload_dummy_buffer(buf_T *buf, char_u *dirname_start); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7710
diff
changeset
|
146 static qf_info_T *ll_get_or_alloc_list(win_T *); |
7 | 147 |
644 | 148 /* Quickfix window check helper macro */ |
149 #define IS_QF_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref == NULL) | |
150 /* Location list window check helper macro */ | |
151 #define IS_LL_WINDOW(wp) (bt_quickfix(wp->w_buffer) && wp->w_llist_ref != NULL) | |
152 /* | |
153 * Return location list for window 'wp' | |
154 * For location list window, return the referenced location list | |
155 */ | |
156 #define GET_LOC_LIST(wp) (IS_LL_WINDOW(wp) ? wp->w_llist_ref : wp->w_llist) | |
157 | |
7 | 158 /* |
41 | 159 * Read the errorfile "efile" into memory, line by line, building the error |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
160 * list. Set the error list's title to qf_title. |
7 | 161 * Return -1 for error, number of errors for success. |
162 */ | |
163 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
164 qf_init( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
165 win_T *wp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
166 char_u *efile, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
167 char_u *errorformat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
168 int newlist, /* TRUE: start a new error list */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
169 char_u *qf_title) |
7 | 170 { |
644 | 171 qf_info_T *qi = &ql_info; |
172 | |
173 if (wp != NULL) | |
665 | 174 { |
175 qi = ll_get_or_alloc_list(wp); | |
176 if (qi == NULL) | |
177 return FAIL; | |
178 } | |
644 | 179 |
180 return qf_init_ext(qi, efile, curbuf, NULL, errorformat, newlist, | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
181 (linenr_T)0, (linenr_T)0, |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
182 qf_title); |
41 | 183 } |
184 | |
185 /* | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
186 * Maximum number of bytes allowed per line while reading a errorfile. |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
187 */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
188 #define LINE_MAXLEN 4096 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
189 |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
190 static char_u * |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
191 qf_grow_linebuf(char_u **growbuf, int *growbufsiz, int newsz, int *allocsz) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
192 { |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
193 /* |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
194 * If the line exceeds LINE_MAXLEN exclude the last |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
195 * byte since it's not a NL character. |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
196 */ |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
197 *allocsz = newsz > LINE_MAXLEN ? LINE_MAXLEN - 1 : newsz; |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
198 if (*growbuf == NULL) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
199 { |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
200 *growbuf = alloc(*allocsz + 1); |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
201 if (*growbuf == NULL) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
202 return NULL; |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
203 *growbufsiz = *allocsz; |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
204 } |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
205 else if (*allocsz > *growbufsiz) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
206 { |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
207 *growbuf = vim_realloc(*growbuf, *allocsz + 1); |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
208 if (*growbuf == NULL) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
209 return NULL; |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
210 *growbufsiz = *allocsz; |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
211 } |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
212 return *growbuf; |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
213 } |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
214 |
9365
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
215 static struct fmtpattern |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
216 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
217 char_u convchar; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
218 char *pattern; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
219 } fmt_pat[FMT_PATTERNS] = |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
220 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
221 {'f', ".\\+"}, /* only used when at end */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
222 {'n', "\\d\\+"}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
223 {'l', "\\d\\+"}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
224 {'c', "\\d\\+"}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
225 {'t', "."}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
226 {'m', ".\\+"}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
227 {'r', ".*"}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
228 {'p', "[- .]*"}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
229 {'v', "\\d\\+"}, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
230 {'s', ".\\+"} |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
231 }; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
232 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
233 /* |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
234 * Converts a 'errorformat' string to regular expression pattern |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
235 */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
236 static int |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
237 efm_to_regpat( |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
238 char_u *efm, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
239 int len, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
240 efm_T *fmt_ptr, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
241 char_u *regpat, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
242 char_u *errmsg) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
243 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
244 char_u *ptr; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
245 char_u *efmp; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
246 char_u *srcptr; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
247 int round; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
248 int idx = 0; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
249 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
250 /* |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
251 * Build regexp pattern from current 'errorformat' option |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
252 */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
253 ptr = regpat; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
254 *ptr++ = '^'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
255 round = 0; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
256 for (efmp = efm; efmp < efm + len; ++efmp) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
257 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
258 if (*efmp == '%') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
259 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
260 ++efmp; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
261 for (idx = 0; idx < FMT_PATTERNS; ++idx) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
262 if (fmt_pat[idx].convchar == *efmp) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
263 break; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
264 if (idx < FMT_PATTERNS) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
265 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
266 if (fmt_ptr->addr[idx]) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
267 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
268 sprintf((char *)errmsg, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
269 _("E372: Too many %%%c in format string"), *efmp); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
270 EMSG(errmsg); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
271 return -1; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
272 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
273 if ((idx |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
274 && idx < 6 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
275 && vim_strchr((char_u *)"DXOPQ", |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
276 fmt_ptr->prefix) != NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
277 || (idx == 6 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
278 && vim_strchr((char_u *)"OPQ", |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
279 fmt_ptr->prefix) == NULL)) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
280 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
281 sprintf((char *)errmsg, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
282 _("E373: Unexpected %%%c in format string"), *efmp); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
283 EMSG(errmsg); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
284 return -1; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
285 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
286 fmt_ptr->addr[idx] = (char_u)++round; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
287 *ptr++ = '\\'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
288 *ptr++ = '('; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
289 #ifdef BACKSLASH_IN_FILENAME |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
290 if (*efmp == 'f') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
291 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
292 /* Also match "c:" in the file name, even when |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
293 * checking for a colon next: "%f:". |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
294 * "\%(\a:\)\=" */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
295 STRCPY(ptr, "\\%(\\a:\\)\\="); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
296 ptr += 10; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
297 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
298 #endif |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
299 if (*efmp == 'f' && efmp[1] != NUL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
300 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
301 if (efmp[1] != '\\' && efmp[1] != '%') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
302 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
303 /* A file name may contain spaces, but this isn't |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
304 * in "\f". For "%f:%l:%m" there may be a ":" in |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
305 * the file name. Use ".\{-1,}x" instead (x is |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
306 * the next character), the requirement that :999: |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
307 * follows should work. */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
308 STRCPY(ptr, ".\\{-1,}"); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
309 ptr += 7; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
310 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
311 else |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
312 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
313 /* File name followed by '\\' or '%': include as |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
314 * many file name chars as possible. */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
315 STRCPY(ptr, "\\f\\+"); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
316 ptr += 4; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
317 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
318 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
319 else |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
320 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
321 srcptr = (char_u *)fmt_pat[idx].pattern; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
322 while ((*ptr = *srcptr++) != NUL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
323 ++ptr; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
324 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
325 *ptr++ = '\\'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
326 *ptr++ = ')'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
327 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
328 else if (*efmp == '*') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
329 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
330 if (*++efmp == '[' || *efmp == '\\') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
331 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
332 if ((*ptr++ = *efmp) == '[') /* %*[^a-z0-9] etc. */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
333 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
334 if (efmp[1] == '^') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
335 *ptr++ = *++efmp; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
336 if (efmp < efm + len) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
337 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
338 *ptr++ = *++efmp; /* could be ']' */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
339 while (efmp < efm + len |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
340 && (*ptr++ = *++efmp) != ']') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
341 /* skip */; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
342 if (efmp == efm + len) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
343 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
344 EMSG(_("E374: Missing ] in format string")); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
345 return -1; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
346 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
347 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
348 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
349 else if (efmp < efm + len) /* %*\D, %*\s etc. */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
350 *ptr++ = *++efmp; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
351 *ptr++ = '\\'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
352 *ptr++ = '+'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
353 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
354 else |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
355 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
356 /* TODO: scanf()-like: %*ud, %*3c, %*f, ... ? */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
357 sprintf((char *)errmsg, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
358 _("E375: Unsupported %%%c in format string"), *efmp); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
359 EMSG(errmsg); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
360 return -1; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
361 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
362 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
363 else if (vim_strchr((char_u *)"%\\.^$~[", *efmp) != NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
364 *ptr++ = *efmp; /* regexp magic characters */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
365 else if (*efmp == '#') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
366 *ptr++ = '*'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
367 else if (*efmp == '>') |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
368 fmt_ptr->conthere = TRUE; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
369 else if (efmp == efm + 1) /* analyse prefix */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
370 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
371 if (vim_strchr((char_u *)"+-", *efmp) != NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
372 fmt_ptr->flags = *efmp++; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
373 if (vim_strchr((char_u *)"DXAEWICZGOPQ", *efmp) != NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
374 fmt_ptr->prefix = *efmp; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
375 else |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
376 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
377 sprintf((char *)errmsg, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
378 _("E376: Invalid %%%c in format string prefix"), *efmp); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
379 EMSG(errmsg); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
380 return -1; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
381 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
382 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
383 else |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
384 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
385 sprintf((char *)errmsg, |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
386 _("E377: Invalid %%%c in format string"), *efmp); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
387 EMSG(errmsg); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
388 return -1; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
389 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
390 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
391 else /* copy normal character */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
392 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
393 if (*efmp == '\\' && efmp + 1 < efm + len) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
394 ++efmp; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
395 else if (vim_strchr((char_u *)".*^$~[", *efmp) != NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
396 *ptr++ = '\\'; /* escape regexp atoms */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
397 if (*efmp) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
398 *ptr++ = *efmp; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
399 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
400 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
401 *ptr++ = '$'; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
402 *ptr = NUL; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
403 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
404 return 0; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
405 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
406 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
407 static void |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
408 free_efm_list(efm_T **efm_first) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
409 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
410 efm_T *efm_ptr; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
411 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
412 for (efm_ptr = *efm_first; efm_ptr != NULL; efm_ptr = *efm_first) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
413 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
414 *efm_first = efm_ptr->next; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
415 vim_regfree(efm_ptr->prog); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
416 vim_free(efm_ptr); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
417 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
418 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
419 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
420 /* Parse 'errorformat' option */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
421 static efm_T * |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
422 parse_efm_option(char_u *efm) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
423 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
424 char_u *errmsg = NULL; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
425 int errmsglen; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
426 efm_T *fmt_ptr = NULL; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
427 efm_T *fmt_first = NULL; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
428 efm_T *fmt_last = NULL; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
429 char_u *fmtstr = NULL; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
430 int len; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
431 int i; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
432 int round; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
433 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
434 errmsglen = CMDBUFFSIZE + 1; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
435 errmsg = alloc_id(errmsglen, aid_qf_errmsg); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
436 if (errmsg == NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
437 goto parse_efm_end; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
438 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
439 /* |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
440 * Get some space to modify the format string into. |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
441 */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
442 i = (FMT_PATTERNS * 3) + ((int)STRLEN(efm) << 2); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
443 for (round = FMT_PATTERNS; round > 0; ) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
444 i += (int)STRLEN(fmt_pat[--round].pattern); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
445 #ifdef COLON_IN_FILENAME |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
446 i += 12; /* "%f" can become twelve chars longer */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
447 #else |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
448 i += 2; /* "%f" can become two chars longer */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
449 #endif |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
450 if ((fmtstr = alloc(i)) == NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
451 goto parse_efm_error; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
452 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
453 while (efm[0] != NUL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
454 { |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
455 /* |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
456 * Allocate a new eformat structure and put it at the end of the list |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
457 */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
458 fmt_ptr = (efm_T *)alloc_clear((unsigned)sizeof(efm_T)); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
459 if (fmt_ptr == NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
460 goto parse_efm_error; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
461 if (fmt_first == NULL) /* first one */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
462 fmt_first = fmt_ptr; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
463 else |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
464 fmt_last->next = fmt_ptr; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
465 fmt_last = fmt_ptr; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
466 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
467 /* |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
468 * Isolate one part in the 'errorformat' option |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
469 */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
470 for (len = 0; efm[len] != NUL && efm[len] != ','; ++len) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
471 if (efm[len] == '\\' && efm[len + 1] != NUL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
472 ++len; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
473 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
474 if (efm_to_regpat(efm, len, fmt_ptr, fmtstr, errmsg) == -1) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
475 goto parse_efm_error; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
476 if ((fmt_ptr->prog = vim_regcomp(fmtstr, RE_MAGIC + RE_STRING)) == NULL) |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
477 goto parse_efm_error; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
478 /* |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
479 * Advance to next part |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
480 */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
481 efm = skip_to_option_part(efm + len); /* skip comma and spaces */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
482 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
483 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
484 if (fmt_first == NULL) /* nothing found */ |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
485 EMSG(_("E378: 'errorformat' contains no pattern")); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
486 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
487 goto parse_efm_end; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
488 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
489 parse_efm_error: |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
490 free_efm_list(&fmt_first); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
491 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
492 parse_efm_end: |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
493 vim_free(fmtstr); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
494 vim_free(errmsg); |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
495 |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
496 return fmt_first; |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
497 } |
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
498 |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
499 /* |
41 | 500 * Read the errorfile "efile" into memory, line by line, building the error |
501 * list. | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
502 * Alternative: when "efile" is NULL read errors from buffer "buf". |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
503 * Alternative: when "tv" is not NULL get errors from the string or list. |
41 | 504 * Always use 'errorformat' from "buf" if there is a local value. |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
505 * Then "lnumfirst" and "lnumlast" specify the range of lines to use. |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
506 * Set the title of the list to "qf_title". |
41 | 507 * Return -1 for error, number of errors for success. |
508 */ | |
509 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
510 qf_init_ext( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
511 qf_info_T *qi, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
512 char_u *efile, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
513 buf_T *buf, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
514 typval_T *tv, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
515 char_u *errorformat, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
516 int newlist, /* TRUE: start a new error list */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
517 linenr_T lnumfirst, /* first line number to use */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
518 linenr_T lnumlast, /* last line number to use */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
519 char_u *qf_title) |
41 | 520 { |
7 | 521 char_u *namebuf; |
522 char_u *errmsg; | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
523 int errmsglen; |
230 | 524 char_u *pattern; |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
525 char_u *growbuf = NULL; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
526 int growbuflen; |
9060
616793d0412b
commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4
Christian Brabandt <cb@256bit.org>
parents:
9056
diff
changeset
|
527 int growbufsiz = 0; |
616793d0412b
commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4
Christian Brabandt <cb@256bit.org>
parents:
9056
diff
changeset
|
528 char_u *linebuf = NULL; |
616793d0412b
commit https://github.com/vim/vim/commit/9a3b3311d26c990208150255ad65472bb4eefaa4
Christian Brabandt <cb@256bit.org>
parents:
9056
diff
changeset
|
529 int linelen = 0; |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
530 int discard; |
7 | 531 int col = 0; |
170 | 532 char_u use_viscol = FALSE; |
7 | 533 int type = 0; |
534 int valid; | |
41 | 535 linenr_T buflnum = lnumfirst; |
7 | 536 long lnum = 0L; |
537 int enr = 0; | |
41 | 538 FILE *fd = NULL; |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
539 #ifdef FEAT_WINDOWS |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
540 qfline_T *old_last = NULL; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
541 #endif |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
542 static efm_T *fmt_first = NULL; |
789 | 543 efm_T *fmt_ptr; |
544 efm_T *fmt_start = NULL; | |
7 | 545 char_u *efm; |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
546 static char_u *last_efm = NULL; |
7 | 547 char_u *ptr; |
548 int len; | |
549 int i; | |
550 int idx = 0; | |
551 int retval = -1; /* default: return error flag */ | |
552 char_u *tail = NULL; | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
553 char_u *p_buf = NULL; |
446 | 554 char_u *p_str = NULL; |
555 listitem_T *p_li = NULL; | |
7 | 556 regmatch_T regmatch; |
557 | |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
558 namebuf = alloc_id(CMDBUFFSIZE + 1, aid_qf_namebuf); |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
559 errmsglen = CMDBUFFSIZE + 1; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
560 errmsg = alloc_id(errmsglen, aid_qf_errmsg); |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
561 pattern = alloc_id(CMDBUFFSIZE + 1, aid_qf_pattern); |
230 | 562 if (namebuf == NULL || errmsg == NULL || pattern == NULL) |
7 | 563 goto qf_init_end; |
564 | |
41 | 565 if (efile != NULL && (fd = mch_fopen((char *)efile, "r")) == NULL) |
7 | 566 { |
567 EMSG2(_(e_openerrf), efile); | |
568 goto qf_init_end; | |
569 } | |
570 | |
644 | 571 if (newlist || qi->qf_curlist == qi->qf_listcount) |
7 | 572 /* make place for a new list */ |
3965 | 573 qf_new_list(qi, qf_title); |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
574 #ifdef FEAT_WINDOWS |
644 | 575 else if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
576 { |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
577 /* Adding to existing list, use last entry. */ |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
578 old_last = qi->qf_lists[qi->qf_curlist].qf_last; |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
579 } |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
580 #endif |
7 | 581 |
582 /* | |
583 * Each part of the format string is copied and modified from errorformat to | |
584 * regex prog. Only a few % characters are allowed. | |
585 */ | |
586 /* Use the local value of 'errorformat' if it's set. */ | |
446 | 587 if (errorformat == p_efm && tv == NULL && *buf->b_p_efm != NUL) |
41 | 588 efm = buf->b_p_efm; |
7 | 589 else |
590 efm = errorformat; | |
9365
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
591 |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
592 /* |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
593 * If we are not adding or adding to another list: clear the state. |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
594 */ |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
595 if (newlist || qi->qf_curlist != qi->qf_dir_curlist) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
596 { |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
597 qi->qf_dir_curlist = qi->qf_curlist; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
598 qf_clean_dir_stack(&qi->qf_dir_stack); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
599 qi->qf_directory = NULL; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
600 qf_clean_dir_stack(&qi->qf_file_stack); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
601 qi->qf_currfile = NULL; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
602 qi->qf_multiline = FALSE; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
603 qi->qf_multiignore = FALSE; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
604 qi->qf_multiscan = FALSE; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
605 } |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
606 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
607 /* |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
608 * If the errorformat didn't change between calls, then reuse the |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
609 * previously parsed values. |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
610 */ |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
611 if (last_efm == NULL || (STRCMP(last_efm, efm) != 0)) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
612 { |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
613 /* free the previously parsed data */ |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
614 vim_free(last_efm); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
615 last_efm = NULL; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
616 free_efm_list(&fmt_first); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
617 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
618 /* parse the current 'efm' */ |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
619 fmt_first = parse_efm_option(efm); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
620 if (fmt_first != NULL) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
621 last_efm = vim_strsave(efm); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
622 } |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
623 |
9365
3830a92c12bf
commit https://github.com/vim/vim/commit/688e3d1fd9b9129a5ba0e0d599ccfe6f4443daf3
Christian Brabandt <cb@256bit.org>
parents:
9334
diff
changeset
|
624 if (fmt_first == NULL) /* nothing found */ |
7 | 625 goto error2; |
626 | |
627 /* | |
628 * got_int is reset here, because it was probably set when killing the | |
629 * ":make" command, but we still want to read the errorfile then. | |
630 */ | |
631 got_int = FALSE; | |
632 | |
633 /* Always ignore case when looking for a matching error. */ | |
634 regmatch.rm_ic = TRUE; | |
635 | |
446 | 636 if (tv != NULL) |
637 { | |
638 if (tv->v_type == VAR_STRING) | |
639 p_str = tv->vval.v_string; | |
640 else if (tv->v_type == VAR_LIST) | |
641 p_li = tv->vval.v_list->lv_first; | |
642 } | |
643 | |
7 | 644 /* |
645 * Read the lines in the error file one by one. | |
646 * Try to recognize one of the error formats in each line. | |
647 */ | |
41 | 648 while (!got_int) |
7 | 649 { |
41 | 650 /* Get the next line. */ |
651 if (fd == NULL) | |
652 { | |
446 | 653 if (tv != NULL) |
654 { | |
655 if (tv->v_type == VAR_STRING) | |
656 { | |
657 /* Get the next line from the supplied string */ | |
658 char_u *p; | |
659 | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
660 if (*p_str == NUL) /* Reached the end of the string */ |
446 | 661 break; |
662 | |
663 p = vim_strchr(p_str, '\n'); | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
664 if (p != NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
665 len = (int)(p - p_str) + 1; |
446 | 666 else |
835 | 667 len = (int)STRLEN(p_str); |
446 | 668 |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
669 if (len > IOSIZE - 2) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
670 { |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
671 linebuf = qf_grow_linebuf(&growbuf, &growbufsiz, len, |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
672 &linelen); |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
673 if (linebuf == NULL) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
674 goto qf_init_end; |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
675 } |
446 | 676 else |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
677 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
678 linebuf = IObuff; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
679 linelen = len; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
680 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
681 vim_strncpy(linebuf, p_str, linelen); |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
682 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
683 /* |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
684 * Increment using len in order to discard the rest of the |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
685 * line if it exceeds LINE_MAXLEN. |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
686 */ |
446 | 687 p_str += len; |
688 } | |
689 else if (tv->v_type == VAR_LIST) | |
690 { | |
691 /* Get the next line from the supplied list */ | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
692 while (p_li != NULL |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
693 && (p_li->li_tv.v_type != VAR_STRING |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
694 || p_li->li_tv.vval.v_string == NULL)) |
446 | 695 p_li = p_li->li_next; /* Skip non-string items */ |
696 | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
697 if (p_li == NULL) /* End of the list */ |
446 | 698 break; |
699 | |
835 | 700 len = (int)STRLEN(p_li->li_tv.vval.v_string); |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
701 if (len > IOSIZE - 2) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
702 { |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
703 linebuf = qf_grow_linebuf(&growbuf, &growbufsiz, len, |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
704 &linelen); |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
705 if (linebuf == NULL) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
706 goto qf_init_end; |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
707 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
708 else |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
709 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
710 linebuf = IObuff; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
711 linelen = len; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
712 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
713 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
714 vim_strncpy(linebuf, p_li->li_tv.vval.v_string, linelen); |
446 | 715 |
716 p_li = p_li->li_next; /* next item */ | |
717 } | |
718 } | |
719 else | |
720 { | |
721 /* Get the next line from the supplied buffer */ | |
722 if (buflnum > lnumlast) | |
723 break; | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
724 p_buf = ml_get_buf(buf, buflnum++, FALSE); |
9334
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
725 len = (int)STRLEN(p_buf); |
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
726 if (len > IOSIZE - 2) |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
727 { |
9114
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
728 linebuf = qf_grow_linebuf(&growbuf, &growbufsiz, len, |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
729 &linelen); |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
730 if (linebuf == NULL) |
f221aec7fcca
commit https://github.com/vim/vim/commit/2b2b8ae5ab37b04584633c469265d85825166905
Christian Brabandt <cb@256bit.org>
parents:
9077
diff
changeset
|
731 goto qf_init_end; |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
732 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
733 else |
9334
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
734 { |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
735 linebuf = IObuff; |
9334
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
736 linelen = len; |
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
737 } |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
738 vim_strncpy(linebuf, p_buf, linelen); |
446 | 739 } |
41 | 740 } |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
741 else |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
742 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
743 if (fgets((char *)IObuff, IOSIZE, fd) == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
744 break; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
745 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
746 discard = FALSE; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
747 linelen = (int)STRLEN(IObuff); |
9197
847a709d04c1
commit https://github.com/vim/vim/commit/b37662a0fbb952838fca87aff4d26b596030b67b
Christian Brabandt <cb@256bit.org>
parents:
9195
diff
changeset
|
748 if (linelen == IOSIZE - 1 && !(IObuff[linelen - 1] == '\n' |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
749 #ifdef USE_CRNL |
9197
847a709d04c1
commit https://github.com/vim/vim/commit/b37662a0fbb952838fca87aff4d26b596030b67b
Christian Brabandt <cb@256bit.org>
parents:
9195
diff
changeset
|
750 || IObuff[linelen - 1] == '\r' |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
751 #endif |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
752 )) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
753 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
754 /* |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
755 * The current line exceeds IObuff, continue reading using |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
756 * growbuf until EOL or LINE_MAXLEN bytes is read. |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
757 */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
758 if (growbuf == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
759 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
760 growbufsiz = 2 * (IOSIZE - 1); |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
761 growbuf = alloc(growbufsiz); |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
762 if (growbuf == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
763 goto qf_init_end; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
764 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
765 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
766 /* Copy the read part of the line, excluding null-terminator */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
767 memcpy(growbuf, IObuff, IOSIZE - 1); |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
768 growbuflen = linelen; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
769 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
770 for (;;) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
771 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
772 if (fgets((char *)growbuf + growbuflen, |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
773 growbufsiz - growbuflen, fd) == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
774 break; |
9077
a2441f2ff85d
commit https://github.com/vim/vim/commit/d9db8b448c214eb583e84c598bca0688b9202ba7
Christian Brabandt <cb@256bit.org>
parents:
9060
diff
changeset
|
775 linelen = (int)STRLEN(growbuf + growbuflen); |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
776 growbuflen += linelen; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
777 if (growbuf[growbuflen - 1] == '\n' |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
778 #ifdef USE_CRNL |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
779 || growbuf[growbuflen - 1] == '\r' |
3002 | 780 #endif |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
781 ) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
782 break; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
783 if (growbufsiz == LINE_MAXLEN) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
784 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
785 discard = TRUE; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
786 break; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
787 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
788 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
789 growbufsiz = 2 * growbufsiz < LINE_MAXLEN |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
790 ? 2 * growbufsiz : LINE_MAXLEN; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
791 growbuf = vim_realloc(growbuf, 2 * growbufsiz); |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
792 if (growbuf == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
793 goto qf_init_end; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
794 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
795 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
796 while (discard) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
797 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
798 /* |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
799 * The current line is longer than LINE_MAXLEN, continue |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
800 * reading but discard everything until EOL or EOF is |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
801 * reached. |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
802 */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
803 if (fgets((char *)IObuff, IOSIZE, fd) == NULL |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
804 || (int)STRLEN(IObuff) < IOSIZE - 1 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
805 || IObuff[IOSIZE - 1] == '\n' |
7 | 806 #ifdef USE_CRNL |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
807 || IObuff[IOSIZE - 1] == '\r' |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
808 #endif |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
809 ) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
810 break; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
811 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
812 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
813 linebuf = growbuf; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
814 linelen = growbuflen; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
815 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
816 else |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
817 linebuf = IObuff; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
818 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
819 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
820 if (linelen > 0 && linebuf[linelen - 1] == '\n') |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
821 linebuf[linelen - 1] = NUL; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
822 #ifdef USE_CRNL |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
823 if (linelen > 0 && linebuf[linelen - 1] == '\r') |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
824 linebuf[linelen - 1] = NUL; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
825 #endif |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
826 |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
827 #ifdef FEAT_MBYTE |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
828 remove_bom(linebuf); |
7 | 829 #endif |
830 | |
789 | 831 /* If there was no %> item start at the first pattern */ |
832 if (fmt_start == NULL) | |
833 fmt_ptr = fmt_first; | |
834 else | |
835 { | |
836 fmt_ptr = fmt_start; | |
837 fmt_start = NULL; | |
838 } | |
839 | |
7 | 840 /* |
841 * Try to match each part of 'errorformat' until we find a complete | |
842 * match or no match. | |
843 */ | |
844 valid = TRUE; | |
845 restofline: | |
789 | 846 for ( ; fmt_ptr != NULL; fmt_ptr = fmt_ptr->next) |
7 | 847 { |
6450 | 848 int r; |
849 | |
7 | 850 idx = fmt_ptr->prefix; |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
851 if (qi->qf_multiscan && vim_strchr((char_u *)"OPQ", idx) == NULL) |
7 | 852 continue; |
853 namebuf[0] = NUL; | |
230 | 854 pattern[0] = NUL; |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
855 if (!qi->qf_multiscan) |
7 | 856 errmsg[0] = NUL; |
857 lnum = 0; | |
858 col = 0; | |
170 | 859 use_viscol = FALSE; |
7 | 860 enr = -1; |
861 type = 0; | |
862 tail = NULL; | |
863 | |
864 regmatch.regprog = fmt_ptr->prog; | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
865 r = vim_regexec(®match, linebuf, (colnr_T)0); |
6450 | 866 fmt_ptr->prog = regmatch.regprog; |
867 if (r) | |
7 | 868 { |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
869 if ((idx == 'C' || idx == 'Z') && !qi->qf_multiline) |
7 | 870 continue; |
871 if (vim_strchr((char_u *)"EWI", idx) != NULL) | |
872 type = idx; | |
873 else | |
874 type = 0; | |
875 /* | |
895 | 876 * Extract error message data from matched line. |
877 * We check for an actual submatch, because "\[" and "\]" in | |
878 * the 'errorformat' may cause the wrong submatch to be used. | |
7 | 879 */ |
880 if ((i = (int)fmt_ptr->addr[0]) > 0) /* %f */ | |
881 { | |
895 | 882 int c; |
883 | |
884 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) | |
885 continue; | |
277 | 886 |
887 /* Expand ~/file and $HOME/file to full path. */ | |
895 | 888 c = *regmatch.endp[i]; |
277 | 889 *regmatch.endp[i] = NUL; |
890 expand_env(regmatch.startp[i], namebuf, CMDBUFFSIZE); | |
891 *regmatch.endp[i] = c; | |
892 | |
7 | 893 if (vim_strchr((char_u *)"OPQ", idx) != NULL |
277 | 894 && mch_getperm(namebuf) == -1) |
7 | 895 continue; |
896 } | |
897 if ((i = (int)fmt_ptr->addr[1]) > 0) /* %n */ | |
895 | 898 { |
899 if (regmatch.startp[i] == NULL) | |
900 continue; | |
7 | 901 enr = (int)atol((char *)regmatch.startp[i]); |
895 | 902 } |
7 | 903 if ((i = (int)fmt_ptr->addr[2]) > 0) /* %l */ |
895 | 904 { |
905 if (regmatch.startp[i] == NULL) | |
906 continue; | |
7 | 907 lnum = atol((char *)regmatch.startp[i]); |
895 | 908 } |
7 | 909 if ((i = (int)fmt_ptr->addr[3]) > 0) /* %c */ |
895 | 910 { |
911 if (regmatch.startp[i] == NULL) | |
912 continue; | |
7 | 913 col = (int)atol((char *)regmatch.startp[i]); |
895 | 914 } |
7 | 915 if ((i = (int)fmt_ptr->addr[4]) > 0) /* %t */ |
895 | 916 { |
917 if (regmatch.startp[i] == NULL) | |
918 continue; | |
7 | 919 type = *regmatch.startp[i]; |
895 | 920 } |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
921 if (fmt_ptr->flags == '+' && !qi->qf_multiscan) /* %+ */ |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
922 { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
923 if (linelen > errmsglen) { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
924 /* linelen + null terminator */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
925 if ((errmsg = vim_realloc(errmsg, linelen + 1)) == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
926 goto qf_init_end; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
927 errmsglen = linelen + 1; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
928 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
929 vim_strncpy(errmsg, linebuf, linelen); |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
930 } |
7 | 931 else if ((i = (int)fmt_ptr->addr[5]) > 0) /* %m */ |
932 { | |
895 | 933 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) |
934 continue; | |
7 | 935 len = (int)(regmatch.endp[i] - regmatch.startp[i]); |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
936 if (len > errmsglen) { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
937 /* len + null terminator */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
938 if ((errmsg = vim_realloc(errmsg, len + 1)) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
939 == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
940 goto qf_init_end; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
941 errmsglen = len + 1; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
942 } |
418 | 943 vim_strncpy(errmsg, regmatch.startp[i], len); |
7 | 944 } |
945 if ((i = (int)fmt_ptr->addr[6]) > 0) /* %r */ | |
895 | 946 { |
947 if (regmatch.startp[i] == NULL) | |
948 continue; | |
7 | 949 tail = regmatch.startp[i]; |
895 | 950 } |
7 | 951 if ((i = (int)fmt_ptr->addr[7]) > 0) /* %p */ |
952 { | |
3555 | 953 char_u *match_ptr; |
954 | |
895 | 955 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) |
956 continue; | |
3555 | 957 col = 0; |
958 for (match_ptr = regmatch.startp[i]; | |
959 match_ptr != regmatch.endp[i]; ++match_ptr) | |
960 { | |
961 ++col; | |
962 if (*match_ptr == TAB) | |
963 { | |
964 col += 7; | |
965 col -= col % 8; | |
966 } | |
967 } | |
968 ++col; | |
969 use_viscol = TRUE; | |
7 | 970 } |
971 if ((i = (int)fmt_ptr->addr[8]) > 0) /* %v */ | |
972 { | |
895 | 973 if (regmatch.startp[i] == NULL) |
974 continue; | |
7 | 975 col = (int)atol((char *)regmatch.startp[i]); |
170 | 976 use_viscol = TRUE; |
7 | 977 } |
230 | 978 if ((i = (int)fmt_ptr->addr[9]) > 0) /* %s */ |
979 { | |
895 | 980 if (regmatch.startp[i] == NULL || regmatch.endp[i] == NULL) |
981 continue; | |
230 | 982 len = (int)(regmatch.endp[i] - regmatch.startp[i]); |
983 if (len > CMDBUFFSIZE - 5) | |
984 len = CMDBUFFSIZE - 5; | |
985 STRCPY(pattern, "^\\V"); | |
986 STRNCAT(pattern, regmatch.startp[i], len); | |
987 pattern[len + 3] = '\\'; | |
988 pattern[len + 4] = '$'; | |
989 pattern[len + 5] = NUL; | |
990 } | |
7 | 991 break; |
992 } | |
993 } | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
994 qi->qf_multiscan = FALSE; |
789 | 995 |
625 | 996 if (fmt_ptr == NULL || idx == 'D' || idx == 'X') |
7 | 997 { |
625 | 998 if (fmt_ptr != NULL) |
7 | 999 { |
1000 if (idx == 'D') /* enter directory */ | |
1001 { | |
1002 if (*namebuf == NUL) | |
1003 { | |
1004 EMSG(_("E379: Missing or empty directory name")); | |
1005 goto error2; | |
1006 } | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1007 qi->qf_directory = |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1008 qf_push_dir(namebuf, &qi->qf_dir_stack, FALSE); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1009 if (qi->qf_directory == NULL) |
7 | 1010 goto error2; |
1011 } | |
1012 else if (idx == 'X') /* leave directory */ | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1013 qi->qf_directory = qf_pop_dir(&qi->qf_dir_stack); |
7 | 1014 } |
1015 namebuf[0] = NUL; /* no match found, remove file name */ | |
1016 lnum = 0; /* don't jump to this line */ | |
1017 valid = FALSE; | |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1018 if (linelen > errmsglen) { |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1019 /* linelen + null terminator */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1020 if ((errmsg = vim_realloc(errmsg, linelen + 1)) == NULL) |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1021 goto qf_init_end; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1022 errmsglen = linelen + 1; |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1023 } |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1024 /* copy whole line to error message */ |
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1025 vim_strncpy(errmsg, linebuf, linelen); |
625 | 1026 if (fmt_ptr == NULL) |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1027 qi->qf_multiline = qi->qf_multiignore = FALSE; |
7 | 1028 } |
625 | 1029 else if (fmt_ptr != NULL) |
7 | 1030 { |
789 | 1031 /* honor %> item */ |
1032 if (fmt_ptr->conthere) | |
1033 fmt_start = fmt_ptr; | |
1034 | |
7 | 1035 if (vim_strchr((char_u *)"AEWI", idx) != NULL) |
5716 | 1036 { |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1037 qi->qf_multiline = TRUE; /* start of a multi-line message */ |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1038 qi->qf_multiignore = FALSE; /* reset continuation */ |
5716 | 1039 } |
7 | 1040 else if (vim_strchr((char_u *)"CZ", idx) != NULL) |
1041 { /* continuation of multi-line msg */ | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1042 qfline_T *qfprev = qi->qf_lists[qi->qf_curlist].qf_last; |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1043 |
7 | 1044 if (qfprev == NULL) |
1045 goto error2; | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1046 if (*errmsg && !qi->qf_multiignore) |
7 | 1047 { |
1048 len = (int)STRLEN(qfprev->qf_text); | |
1049 if ((ptr = alloc((unsigned)(len + STRLEN(errmsg) + 2))) | |
1050 == NULL) | |
1051 goto error2; | |
1052 STRCPY(ptr, qfprev->qf_text); | |
1053 vim_free(qfprev->qf_text); | |
1054 qfprev->qf_text = ptr; | |
1055 *(ptr += len) = '\n'; | |
1056 STRCPY(++ptr, errmsg); | |
1057 } | |
1058 if (qfprev->qf_nr == -1) | |
1059 qfprev->qf_nr = enr; | |
1060 if (vim_isprintc(type) && !qfprev->qf_type) | |
1061 qfprev->qf_type = type; /* only printable chars allowed */ | |
1062 if (!qfprev->qf_lnum) | |
1063 qfprev->qf_lnum = lnum; | |
1064 if (!qfprev->qf_col) | |
1065 qfprev->qf_col = col; | |
170 | 1066 qfprev->qf_viscol = use_viscol; |
7 | 1067 if (!qfprev->qf_fnum) |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1068 qfprev->qf_fnum = qf_get_fnum(qi, qi->qf_directory, |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1069 *namebuf || qi->qf_directory != NULL |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1070 ? namebuf |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1071 : qi->qf_currfile != NULL && valid |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1072 ? qi->qf_currfile : 0); |
7 | 1073 if (idx == 'Z') |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1074 qi->qf_multiline = qi->qf_multiignore = FALSE; |
7 | 1075 line_breakcheck(); |
1076 continue; | |
1077 } | |
1078 else if (vim_strchr((char_u *)"OPQ", idx) != NULL) | |
1079 { | |
1080 /* global file names */ | |
1081 valid = FALSE; | |
1082 if (*namebuf == NUL || mch_getperm(namebuf) >= 0) | |
1083 { | |
1084 if (*namebuf && idx == 'P') | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1085 qi->qf_currfile = |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1086 qf_push_dir(namebuf, &qi->qf_file_stack, TRUE); |
7 | 1087 else if (idx == 'Q') |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1088 qi->qf_currfile = qf_pop_dir(&qi->qf_file_stack); |
7 | 1089 *namebuf = NUL; |
1090 if (tail && *tail) | |
1091 { | |
1668 | 1092 STRMOVE(IObuff, skipwhite(tail)); |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1093 qi->qf_multiscan = TRUE; |
7 | 1094 goto restofline; |
1095 } | |
1096 } | |
1097 } | |
1098 if (fmt_ptr->flags == '-') /* generally exclude this line */ | |
1099 { | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1100 if (qi->qf_multiline) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1101 /* also exclude continuation lines */ |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1102 qi->qf_multiignore = TRUE; |
7 | 1103 continue; |
1104 } | |
1105 } | |
1106 | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1107 if (qf_add_entry(qi, |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1108 qi->qf_directory, |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1109 (*namebuf || qi->qf_directory != NULL) |
7 | 1110 ? namebuf |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1111 : ((qi->qf_currfile != NULL && valid) |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1112 ? qi->qf_currfile : (char_u *)NULL), |
1065 | 1113 0, |
7 | 1114 errmsg, |
1115 lnum, | |
1116 col, | |
170 | 1117 use_viscol, |
230 | 1118 pattern, |
7 | 1119 enr, |
1120 type, | |
1121 valid) == FAIL) | |
1122 goto error2; | |
1123 line_breakcheck(); | |
1124 } | |
41 | 1125 if (fd == NULL || !ferror(fd)) |
7 | 1126 { |
644 | 1127 if (qi->qf_lists[qi->qf_curlist].qf_index == 0) |
7 | 1128 { |
644 | 1129 /* no valid entry found */ |
1130 qi->qf_lists[qi->qf_curlist].qf_ptr = | |
1131 qi->qf_lists[qi->qf_curlist].qf_start; | |
1132 qi->qf_lists[qi->qf_curlist].qf_index = 1; | |
1133 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE; | |
7 | 1134 } |
1135 else | |
1136 { | |
644 | 1137 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; |
1138 if (qi->qf_lists[qi->qf_curlist].qf_ptr == NULL) | |
1139 qi->qf_lists[qi->qf_curlist].qf_ptr = | |
1140 qi->qf_lists[qi->qf_curlist].qf_start; | |
7 | 1141 } |
644 | 1142 /* return number of matches */ |
1143 retval = qi->qf_lists[qi->qf_curlist].qf_count; | |
9369
ce5b79b005ec
commit https://github.com/vim/vim/commit/bcf7772a23624edc0942120e564f6b4ac95604ad
Christian Brabandt <cb@256bit.org>
parents:
9365
diff
changeset
|
1144 goto qf_init_end; |
7 | 1145 } |
1146 EMSG(_(e_readerrf)); | |
1147 error2: | |
644 | 1148 qf_free(qi, qi->qf_curlist); |
1149 qi->qf_listcount--; | |
1150 if (qi->qf_curlist > 0) | |
1151 --qi->qf_curlist; | |
9369
ce5b79b005ec
commit https://github.com/vim/vim/commit/bcf7772a23624edc0942120e564f6b4ac95604ad
Christian Brabandt <cb@256bit.org>
parents:
9365
diff
changeset
|
1152 qf_init_end: |
41 | 1153 if (fd != NULL) |
1154 fclose(fd); | |
7 | 1155 vim_free(namebuf); |
1156 vim_free(errmsg); | |
230 | 1157 vim_free(pattern); |
9033
0536d1469b67
commit https://github.com/vim/vim/commit/6be8c8e165204b8aa4eeb8a52be87a58d8b41b9e
Christian Brabandt <cb@256bit.org>
parents:
8932
diff
changeset
|
1158 vim_free(growbuf); |
7 | 1159 |
1160 #ifdef FEAT_WINDOWS | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
1161 qf_update_buffer(qi, old_last); |
7 | 1162 #endif |
1163 | |
1164 return retval; | |
1165 } | |
1166 | |
6079 | 1167 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1168 qf_store_title(qf_info_T *qi, char_u *title) |
6079 | 1169 { |
1170 if (title != NULL) | |
1171 { | |
1172 char_u *p = alloc((int)STRLEN(title) + 2); | |
1173 | |
1174 qi->qf_lists[qi->qf_curlist].qf_title = p; | |
1175 if (p != NULL) | |
1176 sprintf((char *)p, ":%s", (char *)title); | |
1177 } | |
1178 } | |
1179 | |
7 | 1180 /* |
1181 * Prepare for adding a new quickfix list. | |
1182 */ | |
1183 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1184 qf_new_list(qf_info_T *qi, char_u *qf_title) |
7 | 1185 { |
1186 int i; | |
1187 | |
1188 /* | |
6079 | 1189 * If the current entry is not the last entry, delete entries beyond |
7 | 1190 * the current entry. This makes it possible to browse in a tree-like |
1191 * way with ":grep'. | |
1192 */ | |
644 | 1193 while (qi->qf_listcount > qi->qf_curlist + 1) |
1194 qf_free(qi, --qi->qf_listcount); | |
7 | 1195 |
1196 /* | |
1197 * When the stack is full, remove to oldest entry | |
1198 * Otherwise, add a new entry. | |
1199 */ | |
644 | 1200 if (qi->qf_listcount == LISTCOUNT) |
7 | 1201 { |
644 | 1202 qf_free(qi, 0); |
7 | 1203 for (i = 1; i < LISTCOUNT; ++i) |
644 | 1204 qi->qf_lists[i - 1] = qi->qf_lists[i]; |
1205 qi->qf_curlist = LISTCOUNT - 1; | |
7 | 1206 } |
1207 else | |
644 | 1208 qi->qf_curlist = qi->qf_listcount++; |
3259 | 1209 vim_memset(&qi->qf_lists[qi->qf_curlist], 0, (size_t)(sizeof(qf_list_T))); |
6079 | 1210 qf_store_title(qi, qf_title); |
7 | 1211 } |
1212 | |
644 | 1213 /* |
1214 * Free a location list | |
1215 */ | |
1216 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1217 ll_free_all(qf_info_T **pqi) |
359 | 1218 { |
1219 int i; | |
644 | 1220 qf_info_T *qi; |
1221 | |
1222 qi = *pqi; | |
1223 if (qi == NULL) | |
1224 return; | |
1225 *pqi = NULL; /* Remove reference to this list */ | |
1226 | |
1227 qi->qf_refcount--; | |
1228 if (qi->qf_refcount < 1) | |
1229 { | |
1230 /* No references to this location list */ | |
1231 for (i = 0; i < qi->qf_listcount; ++i) | |
1232 qf_free(qi, i); | |
1233 vim_free(qi); | |
1234 } | |
359 | 1235 } |
644 | 1236 |
1237 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1238 qf_free_all(win_T *wp) |
644 | 1239 { |
1240 int i; | |
1241 qf_info_T *qi = &ql_info; | |
1242 | |
1243 if (wp != NULL) | |
1244 { | |
1245 /* location list */ | |
1246 ll_free_all(&wp->w_llist); | |
1247 ll_free_all(&wp->w_llist_ref); | |
1248 } | |
1249 else | |
1250 /* quickfix list */ | |
1251 for (i = 0; i < qi->qf_listcount; ++i) | |
1252 qf_free(qi, i); | |
1253 } | |
359 | 1254 |
7 | 1255 /* |
1256 * Add an entry to the end of the list of errors. | |
1257 * Returns OK or FAIL. | |
1258 */ | |
1259 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1260 qf_add_entry( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1261 qf_info_T *qi, /* quickfix list */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1262 char_u *dir, /* optional directory name */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1263 char_u *fname, /* file name or NULL */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1264 int bufnum, /* buffer number or zero */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1265 char_u *mesg, /* message */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1266 long lnum, /* line number */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1267 int col, /* column */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1268 int vis_col, /* using visual column */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1269 char_u *pattern, /* search pattern */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1270 int nr, /* error number */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1271 int type, /* type character */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1272 int valid) /* valid entry */ |
7 | 1273 { |
230 | 1274 qfline_T *qfp; |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1275 qfline_T **lastp; /* pointer to qf_last or NULL */ |
7 | 1276 |
230 | 1277 if ((qfp = (qfline_T *)alloc((unsigned)sizeof(qfline_T))) == NULL) |
7 | 1278 return FAIL; |
1065 | 1279 if (bufnum != 0) |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1280 { |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1281 buf_T *buf = buflist_findnr(bufnum); |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1282 |
1065 | 1283 qfp->qf_fnum = bufnum; |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1284 if (buf != NULL) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1285 buf->b_has_qf_entry = TRUE; |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1286 } |
1065 | 1287 else |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1288 qfp->qf_fnum = qf_get_fnum(qi, dir, fname); |
7 | 1289 if ((qfp->qf_text = vim_strsave(mesg)) == NULL) |
1290 { | |
1291 vim_free(qfp); | |
1292 return FAIL; | |
1293 } | |
1294 qfp->qf_lnum = lnum; | |
1295 qfp->qf_col = col; | |
170 | 1296 qfp->qf_viscol = vis_col; |
230 | 1297 if (pattern == NULL || *pattern == NUL) |
1298 qfp->qf_pattern = NULL; | |
1299 else if ((qfp->qf_pattern = vim_strsave(pattern)) == NULL) | |
1300 { | |
1301 vim_free(qfp->qf_text); | |
1302 vim_free(qfp); | |
1303 return FAIL; | |
1304 } | |
7 | 1305 qfp->qf_nr = nr; |
1306 if (type != 1 && !vim_isprintc(type)) /* only printable chars allowed */ | |
1307 type = 0; | |
1308 qfp->qf_type = type; | |
1309 qfp->qf_valid = valid; | |
1310 | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1311 lastp = &qi->qf_lists[qi->qf_curlist].qf_last; |
644 | 1312 if (qi->qf_lists[qi->qf_curlist].qf_count == 0) |
1313 /* first element in the list */ | |
7 | 1314 { |
644 | 1315 qi->qf_lists[qi->qf_curlist].qf_start = qfp; |
8716
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1316 qi->qf_lists[qi->qf_curlist].qf_ptr = qfp; |
4ce26276caeb
commit https://github.com/vim/vim/commit/8b20179c657b4266dff115486ca68c6a50324071
Christian Brabandt <cb@256bit.org>
parents:
8702
diff
changeset
|
1317 qi->qf_lists[qi->qf_curlist].qf_index = 0; |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1318 qfp->qf_prev = NULL; |
7 | 1319 } |
1320 else | |
1321 { | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1322 qfp->qf_prev = *lastp; |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1323 (*lastp)->qf_next = qfp; |
7 | 1324 } |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1325 qfp->qf_next = NULL; |
7 | 1326 qfp->qf_cleared = FALSE; |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1327 *lastp = qfp; |
644 | 1328 ++qi->qf_lists[qi->qf_curlist].qf_count; |
1329 if (qi->qf_lists[qi->qf_curlist].qf_index == 0 && qfp->qf_valid) | |
1330 /* first valid entry */ | |
7 | 1331 { |
644 | 1332 qi->qf_lists[qi->qf_curlist].qf_index = |
1333 qi->qf_lists[qi->qf_curlist].qf_count; | |
1334 qi->qf_lists[qi->qf_curlist].qf_ptr = qfp; | |
7 | 1335 } |
1336 | |
1337 return OK; | |
1338 } | |
1339 | |
1340 /* | |
659 | 1341 * Allocate a new location list |
644 | 1342 */ |
659 | 1343 static qf_info_T * |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1344 ll_new_list(void) |
644 | 1345 { |
659 | 1346 qf_info_T *qi; |
1347 | |
1348 qi = (qf_info_T *)alloc((unsigned)sizeof(qf_info_T)); | |
1349 if (qi != NULL) | |
1350 { | |
1351 vim_memset(qi, 0, (size_t)(sizeof(qf_info_T))); | |
1352 qi->qf_refcount++; | |
1353 } | |
1354 | |
1355 return qi; | |
644 | 1356 } |
1357 | |
1358 /* | |
1359 * Return the location list for window 'wp'. | |
1360 * If not present, allocate a location list | |
1361 */ | |
1362 static qf_info_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1363 ll_get_or_alloc_list(win_T *wp) |
644 | 1364 { |
1365 if (IS_LL_WINDOW(wp)) | |
1366 /* For a location list window, use the referenced location list */ | |
1367 return wp->w_llist_ref; | |
1368 | |
1369 /* | |
1370 * For a non-location list window, w_llist_ref should not point to a | |
1371 * location list. | |
1372 */ | |
1373 ll_free_all(&wp->w_llist_ref); | |
1374 | |
1375 if (wp->w_llist == NULL) | |
659 | 1376 wp->w_llist = ll_new_list(); /* new location list */ |
644 | 1377 return wp->w_llist; |
1378 } | |
1379 | |
1380 /* | |
1381 * Copy the location list from window "from" to window "to". | |
1382 */ | |
1383 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1384 copy_loclist(win_T *from, win_T *to) |
644 | 1385 { |
1386 qf_info_T *qi; | |
1387 int idx; | |
1388 int i; | |
1389 | |
1390 /* | |
1391 * When copying from a location list window, copy the referenced | |
1392 * location list. For other windows, copy the location list for | |
1393 * that window. | |
1394 */ | |
1395 if (IS_LL_WINDOW(from)) | |
1396 qi = from->w_llist_ref; | |
1397 else | |
1398 qi = from->w_llist; | |
1399 | |
1400 if (qi == NULL) /* no location list to copy */ | |
1401 return; | |
1402 | |
659 | 1403 /* allocate a new location list */ |
1404 if ((to->w_llist = ll_new_list()) == NULL) | |
644 | 1405 return; |
1406 | |
1407 to->w_llist->qf_listcount = qi->qf_listcount; | |
1408 | |
1409 /* Copy the location lists one at a time */ | |
1410 for (idx = 0; idx < qi->qf_listcount; idx++) | |
1411 { | |
1412 qf_list_T *from_qfl; | |
1413 qf_list_T *to_qfl; | |
1414 | |
1415 to->w_llist->qf_curlist = idx; | |
1416 | |
1417 from_qfl = &qi->qf_lists[idx]; | |
1418 to_qfl = &to->w_llist->qf_lists[idx]; | |
1419 | |
1420 /* Some of the fields are populated by qf_add_entry() */ | |
1421 to_qfl->qf_nonevalid = from_qfl->qf_nonevalid; | |
1422 to_qfl->qf_count = 0; | |
1423 to_qfl->qf_index = 0; | |
1424 to_qfl->qf_start = NULL; | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1425 to_qfl->qf_last = NULL; |
644 | 1426 to_qfl->qf_ptr = NULL; |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1427 if (from_qfl->qf_title != NULL) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1428 to_qfl->qf_title = vim_strsave(from_qfl->qf_title); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1429 else |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
1430 to_qfl->qf_title = NULL; |
644 | 1431 |
1432 if (from_qfl->qf_count) | |
1433 { | |
1434 qfline_T *from_qfp; | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1435 qfline_T *prevp; |
644 | 1436 |
1437 /* copy all the location entries in this list */ | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1438 for (i = 0, from_qfp = from_qfl->qf_start; |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1439 i < from_qfl->qf_count && from_qfp != NULL; |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1440 ++i, from_qfp = from_qfp->qf_next) |
644 | 1441 { |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1442 if (qf_add_entry(to->w_llist, |
644 | 1443 NULL, |
1444 NULL, | |
1065 | 1445 0, |
644 | 1446 from_qfp->qf_text, |
1447 from_qfp->qf_lnum, | |
1448 from_qfp->qf_col, | |
1449 from_qfp->qf_viscol, | |
1450 from_qfp->qf_pattern, | |
1451 from_qfp->qf_nr, | |
1452 0, | |
1453 from_qfp->qf_valid) == FAIL) | |
1454 { | |
1455 qf_free_all(to); | |
1456 return; | |
1457 } | |
1458 /* | |
1459 * qf_add_entry() will not set the qf_num field, as the | |
1460 * directory and file names are not supplied. So the qf_fnum | |
1461 * field is copied here. | |
1462 */ | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1463 prevp = to->w_llist->qf_lists[to->w_llist->qf_curlist].qf_last; |
644 | 1464 prevp->qf_fnum = from_qfp->qf_fnum; /* file number */ |
1465 prevp->qf_type = from_qfp->qf_type; /* error type */ | |
1466 if (from_qfl->qf_ptr == from_qfp) | |
1467 to_qfl->qf_ptr = prevp; /* current location */ | |
1468 } | |
1469 } | |
1470 | |
1471 to_qfl->qf_index = from_qfl->qf_index; /* current index in the list */ | |
1472 | |
1473 /* When no valid entries are present in the list, qf_ptr points to | |
1474 * the first item in the list */ | |
2795 | 1475 if (to_qfl->qf_nonevalid) |
5060
30910831e5b0
updated for version 7.3.1273
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1476 { |
644 | 1477 to_qfl->qf_ptr = to_qfl->qf_start; |
5060
30910831e5b0
updated for version 7.3.1273
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1478 to_qfl->qf_index = 1; |
30910831e5b0
updated for version 7.3.1273
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1479 } |
644 | 1480 } |
1481 | |
1482 to->w_llist->qf_curlist = qi->qf_curlist; /* current list */ | |
1483 } | |
1484 | |
1485 /* | |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1486 * Looking up a buffer can be slow if there are many. Remember the last one |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1487 * to make this a lot faster if there are multiple matches in the same file. |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1488 */ |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1489 static char_u *qf_last_bufname = NULL; |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1490 static buf_T *qf_last_buf = NULL; |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1491 |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1492 /* |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1493 * Get buffer number for file "dir.name". |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1494 * Also sets the b_has_qf_entry flag. |
7 | 1495 */ |
1496 static int | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1497 qf_get_fnum(qf_info_T *qi, char_u *directory, char_u *fname) |
7 | 1498 { |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1499 char_u *ptr = NULL; |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1500 buf_T *buf; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1501 char_u *bufname; |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1502 |
7 | 1503 if (fname == NULL || *fname == NUL) /* no file name */ |
1504 return 0; | |
1505 | |
2823 | 1506 #ifdef VMS |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1507 vms_remove_version(fname); |
2823 | 1508 #endif |
1509 #ifdef BACKSLASH_IN_FILENAME | |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1510 if (directory != NULL) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1511 slash_adjust(directory); |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1512 slash_adjust(fname); |
2823 | 1513 #endif |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1514 if (directory != NULL && !vim_isAbsName(fname) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1515 && (ptr = concat_fnames(directory, fname, TRUE)) != NULL) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1516 { |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1517 /* |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1518 * Here we check if the file really exists. |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1519 * This should normally be true, but if make works without |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1520 * "leaving directory"-messages we might have missed a |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1521 * directory change. |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1522 */ |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1523 if (mch_getperm(ptr) < 0) |
7 | 1524 { |
1525 vim_free(ptr); | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1526 directory = qf_guess_filepath(qi, fname); |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1527 if (directory) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1528 ptr = concat_fnames(directory, fname, TRUE); |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1529 else |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1530 ptr = vim_strsave(fname); |
7 | 1531 } |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1532 /* Use concatenated directory name and file name */ |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1533 bufname = ptr; |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1534 } |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1535 else |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1536 bufname = fname; |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1537 |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1538 if (qf_last_bufname != NULL && STRCMP(bufname, qf_last_bufname) == 0 |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1539 && buf_valid(qf_last_buf)) |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1540 { |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1541 buf = qf_last_buf; |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1542 vim_free(ptr); |
7 | 1543 } |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1544 else |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1545 { |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1546 vim_free(qf_last_bufname); |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1547 buf = buflist_new(bufname, NULL, (linenr_T)0, BLN_NOOPT); |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1548 if (bufname == ptr) |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1549 qf_last_bufname = bufname; |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1550 else |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1551 qf_last_bufname = vim_strsave(bufname); |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1552 qf_last_buf = buf; |
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1553 } |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1554 if (buf == NULL) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1555 return 0; |
9473
bdac1019552f
commit https://github.com/vim/vim/commit/8240433f48f7383c281ba2453cc55f10b8ec47d9
Christian Brabandt <cb@256bit.org>
parents:
9458
diff
changeset
|
1556 |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1557 buf->b_has_qf_entry = TRUE; |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
1558 return buf->b_fnum; |
7 | 1559 } |
1560 | |
1561 /* | |
9334
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
1562 * Push dirbuf onto the directory stack and return pointer to actual dir or |
674f9e3ccd1a
commit https://github.com/vim/vim/commit/38df43bd13a2498cc96b3ddd9a20dd75126bd171
Christian Brabandt <cb@256bit.org>
parents:
9201
diff
changeset
|
1563 * NULL on error. |
7 | 1564 */ |
1565 static char_u * | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1566 qf_push_dir(char_u *dirbuf, struct dir_stack_T **stackptr, int is_file_stack) |
7 | 1567 { |
1568 struct dir_stack_T *ds_new; | |
1569 struct dir_stack_T *ds_ptr; | |
1570 | |
1571 /* allocate new stack element and hook it in */ | |
1572 ds_new = (struct dir_stack_T *)alloc((unsigned)sizeof(struct dir_stack_T)); | |
1573 if (ds_new == NULL) | |
1574 return NULL; | |
1575 | |
1576 ds_new->next = *stackptr; | |
1577 *stackptr = ds_new; | |
1578 | |
1579 /* store directory on the stack */ | |
1580 if (vim_isAbsName(dirbuf) | |
1581 || (*stackptr)->next == NULL | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1582 || (*stackptr && is_file_stack)) |
7 | 1583 (*stackptr)->dirname = vim_strsave(dirbuf); |
1584 else | |
1585 { | |
1586 /* Okay we don't have an absolute path. | |
1587 * dirbuf must be a subdir of one of the directories on the stack. | |
1588 * Let's search... | |
1589 */ | |
1590 ds_new = (*stackptr)->next; | |
1591 (*stackptr)->dirname = NULL; | |
1592 while (ds_new) | |
1593 { | |
1594 vim_free((*stackptr)->dirname); | |
1595 (*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf, | |
1596 TRUE); | |
1597 if (mch_isdir((*stackptr)->dirname) == TRUE) | |
1598 break; | |
1599 | |
1600 ds_new = ds_new->next; | |
1601 } | |
1602 | |
1603 /* clean up all dirs we already left */ | |
1604 while ((*stackptr)->next != ds_new) | |
1605 { | |
1606 ds_ptr = (*stackptr)->next; | |
1607 (*stackptr)->next = (*stackptr)->next->next; | |
1608 vim_free(ds_ptr->dirname); | |
1609 vim_free(ds_ptr); | |
1610 } | |
1611 | |
1612 /* Nothing found -> it must be on top level */ | |
1613 if (ds_new == NULL) | |
1614 { | |
1615 vim_free((*stackptr)->dirname); | |
1616 (*stackptr)->dirname = vim_strsave(dirbuf); | |
1617 } | |
1618 } | |
1619 | |
1620 if ((*stackptr)->dirname != NULL) | |
1621 return (*stackptr)->dirname; | |
1622 else | |
1623 { | |
1624 ds_ptr = *stackptr; | |
1625 *stackptr = (*stackptr)->next; | |
1626 vim_free(ds_ptr); | |
1627 return NULL; | |
1628 } | |
1629 } | |
1630 | |
1631 | |
1632 /* | |
1633 * pop dirbuf from the directory stack and return previous directory or NULL if | |
1634 * stack is empty | |
1635 */ | |
1636 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1637 qf_pop_dir(struct dir_stack_T **stackptr) |
7 | 1638 { |
1639 struct dir_stack_T *ds_ptr; | |
1640 | |
1641 /* TODO: Should we check if dirbuf is the directory on top of the stack? | |
1642 * What to do if it isn't? */ | |
1643 | |
1644 /* pop top element and free it */ | |
1645 if (*stackptr != NULL) | |
1646 { | |
1647 ds_ptr = *stackptr; | |
1648 *stackptr = (*stackptr)->next; | |
1649 vim_free(ds_ptr->dirname); | |
1650 vim_free(ds_ptr); | |
1651 } | |
1652 | |
1653 /* return NEW top element as current dir or NULL if stack is empty*/ | |
1654 return *stackptr ? (*stackptr)->dirname : NULL; | |
1655 } | |
1656 | |
1657 /* | |
1658 * clean up directory stack | |
1659 */ | |
1660 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1661 qf_clean_dir_stack(struct dir_stack_T **stackptr) |
7 | 1662 { |
1663 struct dir_stack_T *ds_ptr; | |
1664 | |
1665 while ((ds_ptr = *stackptr) != NULL) | |
1666 { | |
1667 *stackptr = (*stackptr)->next; | |
1668 vim_free(ds_ptr->dirname); | |
1669 vim_free(ds_ptr); | |
1670 } | |
1671 } | |
1672 | |
1673 /* | |
1674 * Check in which directory of the directory stack the given file can be | |
1675 * found. | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
1676 * Returns a pointer to the directory name or NULL if not found. |
7 | 1677 * Cleans up intermediate directory entries. |
1678 * | |
1679 * TODO: How to solve the following problem? | |
1680 * If we have the this directory tree: | |
1681 * ./ | |
1682 * ./aa | |
1683 * ./aa/bb | |
1684 * ./bb | |
1685 * ./bb/x.c | |
1686 * and make says: | |
1687 * making all in aa | |
1688 * making all in bb | |
1689 * x.c:9: Error | |
1690 * Then qf_push_dir thinks we are in ./aa/bb, but we are in ./bb. | |
1691 * qf_guess_filepath will return NULL. | |
1692 */ | |
1693 static char_u * | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1694 qf_guess_filepath(qf_info_T *qi, char_u *filename) |
7 | 1695 { |
1696 struct dir_stack_T *ds_ptr; | |
1697 struct dir_stack_T *ds_tmp; | |
1698 char_u *fullname; | |
1699 | |
1700 /* no dirs on the stack - there's nothing we can do */ | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1701 if (qi->qf_dir_stack == NULL) |
7 | 1702 return NULL; |
1703 | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1704 ds_ptr = qi->qf_dir_stack->next; |
7 | 1705 fullname = NULL; |
1706 while (ds_ptr) | |
1707 { | |
1708 vim_free(fullname); | |
1709 fullname = concat_fnames(ds_ptr->dirname, filename, TRUE); | |
1710 | |
1711 /* If concat_fnames failed, just go on. The worst thing that can happen | |
1712 * is that we delete the entire stack. | |
1713 */ | |
1714 if ((fullname != NULL) && (mch_getperm(fullname) >= 0)) | |
1715 break; | |
1716 | |
1717 ds_ptr = ds_ptr->next; | |
1718 } | |
1719 | |
1720 vim_free(fullname); | |
1721 | |
1722 /* clean up all dirs we already left */ | |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1723 while (qi->qf_dir_stack->next != ds_ptr) |
7 | 1724 { |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1725 ds_tmp = qi->qf_dir_stack->next; |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
1726 qi->qf_dir_stack->next = qi->qf_dir_stack->next->next; |
7 | 1727 vim_free(ds_tmp->dirname); |
1728 vim_free(ds_tmp); | |
1729 } | |
1730 | |
1731 return ds_ptr==NULL? NULL: ds_ptr->dirname; | |
1732 } | |
1733 | |
1734 /* | |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1735 * When loading a file from the quickfix, the auto commands may modify it. |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1736 * This may invalidate the current quickfix entry. This function checks |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1737 * whether a entry is still present in the quickfix. |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1738 * Similar to location list. |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1739 */ |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1740 static int |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1741 is_qf_entry_present(qf_info_T *qi, qfline_T *qf_ptr) |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1742 { |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1743 qf_list_T *qfl; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1744 qfline_T *qfp; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1745 int i; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1746 |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1747 qfl = &qi->qf_lists[qi->qf_curlist]; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1748 |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1749 /* Search for the entry in the current list */ |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1750 for (i = 0, qfp = qfl->qf_start; i < qfl->qf_count; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1751 ++i, qfp = qfp->qf_next) |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
1752 if (qfp == NULL || qfp == qf_ptr) |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1753 break; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1754 |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1755 if (i == qfl->qf_count) /* Entry is not found */ |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1756 return FALSE; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1757 |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1758 return TRUE; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1759 } |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1760 |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
1761 /* |
7 | 1762 * jump to a quickfix line |
1763 * if dir == FORWARD go "errornr" valid entries forward | |
1764 * if dir == BACKWARD go "errornr" valid entries backward | |
1765 * if dir == FORWARD_FILE go "errornr" valid entries files backward | |
1766 * if dir == BACKWARD_FILE go "errornr" valid entries files backward | |
1767 * else if "errornr" is zero, redisplay the same line | |
1768 * else go to entry "errornr" | |
1769 */ | |
1770 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1771 qf_jump( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1772 qf_info_T *qi, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1773 int dir, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1774 int errornr, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1775 int forceit) |
7 | 1776 { |
644 | 1777 qf_info_T *ll_ref; |
230 | 1778 qfline_T *qf_ptr; |
1779 qfline_T *old_qf_ptr; | |
7 | 1780 int qf_index; |
1781 int old_qf_fnum; | |
1782 int old_qf_index; | |
1783 int prev_index; | |
1784 static char_u *e_no_more_items = (char_u *)N_("E553: No more items"); | |
1785 char_u *err = e_no_more_items; | |
1786 linenr_T i; | |
1787 buf_T *old_curbuf; | |
1788 linenr_T old_lnum; | |
1789 colnr_T screen_col; | |
1790 colnr_T char_col; | |
1791 char_u *line; | |
1792 #ifdef FEAT_WINDOWS | |
639 | 1793 char_u *old_swb = p_swb; |
1621 | 1794 unsigned old_swb_flags = swb_flags; |
7 | 1795 int opened_window = FALSE; |
1796 win_T *win; | |
1797 win_T *altwin; | |
1822 | 1798 int flags; |
7 | 1799 #endif |
1743 | 1800 win_T *oldwin = curwin; |
7 | 1801 int print_message = TRUE; |
1802 int len; | |
1803 #ifdef FEAT_FOLDING | |
1804 int old_KeyTyped = KeyTyped; /* getting file may reset it */ | |
1805 #endif | |
9 | 1806 int ok = OK; |
644 | 1807 int usable_win; |
1808 | |
659 | 1809 if (qi == NULL) |
1810 qi = &ql_info; | |
644 | 1811 |
1812 if (qi->qf_curlist >= qi->qf_listcount | |
1813 || qi->qf_lists[qi->qf_curlist].qf_count == 0) | |
7 | 1814 { |
1815 EMSG(_(e_quickfix)); | |
1816 return; | |
1817 } | |
1818 | |
644 | 1819 qf_ptr = qi->qf_lists[qi->qf_curlist].qf_ptr; |
7 | 1820 old_qf_ptr = qf_ptr; |
644 | 1821 qf_index = qi->qf_lists[qi->qf_curlist].qf_index; |
7 | 1822 old_qf_index = qf_index; |
1823 if (dir == FORWARD || dir == FORWARD_FILE) /* next valid entry */ | |
1824 { | |
1825 while (errornr--) | |
1826 { | |
1827 old_qf_ptr = qf_ptr; | |
1828 prev_index = qf_index; | |
1829 old_qf_fnum = qf_ptr->qf_fnum; | |
1830 do | |
1831 { | |
644 | 1832 if (qf_index == qi->qf_lists[qi->qf_curlist].qf_count |
7 | 1833 || qf_ptr->qf_next == NULL) |
1834 { | |
1835 qf_ptr = old_qf_ptr; | |
1836 qf_index = prev_index; | |
1837 if (err != NULL) | |
1838 { | |
1839 EMSG(_(err)); | |
1840 goto theend; | |
1841 } | |
1842 errornr = 0; | |
1843 break; | |
1844 } | |
1845 ++qf_index; | |
1846 qf_ptr = qf_ptr->qf_next; | |
644 | 1847 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid |
1848 && !qf_ptr->qf_valid) | |
7 | 1849 || (dir == FORWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum)); |
1850 err = NULL; | |
1851 } | |
1852 } | |
1853 else if (dir == BACKWARD || dir == BACKWARD_FILE) /* prev. valid entry */ | |
1854 { | |
1855 while (errornr--) | |
1856 { | |
1857 old_qf_ptr = qf_ptr; | |
1858 prev_index = qf_index; | |
1859 old_qf_fnum = qf_ptr->qf_fnum; | |
1860 do | |
1861 { | |
1862 if (qf_index == 1 || qf_ptr->qf_prev == NULL) | |
1863 { | |
1864 qf_ptr = old_qf_ptr; | |
1865 qf_index = prev_index; | |
1866 if (err != NULL) | |
1867 { | |
1868 EMSG(_(err)); | |
1869 goto theend; | |
1870 } | |
1871 errornr = 0; | |
1872 break; | |
1873 } | |
1874 --qf_index; | |
1875 qf_ptr = qf_ptr->qf_prev; | |
644 | 1876 } while ((!qi->qf_lists[qi->qf_curlist].qf_nonevalid |
1877 && !qf_ptr->qf_valid) | |
7 | 1878 || (dir == BACKWARD_FILE && qf_ptr->qf_fnum == old_qf_fnum)); |
1879 err = NULL; | |
1880 } | |
1881 } | |
1882 else if (errornr != 0) /* go to specified number */ | |
1883 { | |
1884 while (errornr < qf_index && qf_index > 1 && qf_ptr->qf_prev != NULL) | |
1885 { | |
1886 --qf_index; | |
1887 qf_ptr = qf_ptr->qf_prev; | |
1888 } | |
644 | 1889 while (errornr > qf_index && qf_index < |
1890 qi->qf_lists[qi->qf_curlist].qf_count | |
7 | 1891 && qf_ptr->qf_next != NULL) |
1892 { | |
1893 ++qf_index; | |
1894 qf_ptr = qf_ptr->qf_next; | |
1895 } | |
1896 } | |
1897 | |
1898 #ifdef FEAT_WINDOWS | |
644 | 1899 qi->qf_lists[qi->qf_curlist].qf_index = qf_index; |
1900 if (qf_win_pos_update(qi, old_qf_index)) | |
7 | 1901 /* No need to print the error message if it's visible in the error |
1902 * window */ | |
1903 print_message = FALSE; | |
1904 | |
1905 /* | |
9 | 1906 * For ":helpgrep" find a help window or open one. |
1907 */ | |
682 | 1908 if (qf_ptr->qf_type == 1 && (!curwin->w_buffer->b_help || cmdmod.tab != 0)) |
9 | 1909 { |
1910 win_T *wp; | |
1911 | |
682 | 1912 if (cmdmod.tab != 0) |
1913 wp = NULL; | |
1914 else | |
1915 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
1916 if (wp->w_buffer != NULL && wp->w_buffer->b_help) | |
1917 break; | |
9 | 1918 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
1919 win_enter(wp, TRUE); | |
1920 else | |
1921 { | |
1922 /* | |
1923 * Split off help window; put it at far top if no position | |
1924 * specified, the current window is vertically split and narrow. | |
1925 */ | |
1822 | 1926 flags = WSP_HELP; |
9 | 1927 if (cmdmod.split == 0 && curwin->w_width != Columns |
1928 && curwin->w_width < 80) | |
1822 | 1929 flags |= WSP_TOP; |
1930 if (qi != &ql_info) | |
1931 flags |= WSP_NEWLOC; /* don't copy the location list */ | |
1932 | |
1933 if (win_split(0, flags) == FAIL) | |
9 | 1934 goto theend; |
26 | 1935 opened_window = TRUE; /* close it when fail */ |
9 | 1936 |
1937 if (curwin->w_height < p_hh) | |
1938 win_setheight((int)p_hh); | |
659 | 1939 |
1940 if (qi != &ql_info) /* not a quickfix list */ | |
1941 { | |
1942 /* The new window should use the supplied location list */ | |
1943 curwin->w_llist = qi; | |
1944 qi->qf_refcount++; | |
1945 } | |
9 | 1946 } |
1947 | |
1948 if (!p_im) | |
1949 restart_edit = 0; /* don't want insert mode in help file */ | |
1950 } | |
1951 | |
1952 /* | |
7 | 1953 * If currently in the quickfix window, find another window to show the |
1954 * file in. | |
1955 */ | |
26 | 1956 if (bt_quickfix(curbuf) && !opened_window) |
7 | 1957 { |
5062
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1958 win_T *usable_win_ptr = NULL; |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1959 |
7 | 1960 /* |
1961 * If there is no file specified, we don't know where to go. | |
1962 * But do advance, otherwise ":cn" gets stuck. | |
1963 */ | |
1964 if (qf_ptr->qf_fnum == 0) | |
1965 goto theend; | |
1966 | |
644 | 1967 usable_win = 0; |
5062
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1968 |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1969 ll_ref = curwin->w_llist_ref; |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1970 if (ll_ref != NULL) |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1971 { |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1972 /* Find a window using the same location list that is not a |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1973 * quickfix window. */ |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1974 FOR_ALL_WINDOWS(usable_win_ptr) |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1975 if (usable_win_ptr->w_llist == ll_ref |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1976 && usable_win_ptr->w_buffer->b_p_bt[0] != 'q') |
5084
14e7a115d54d
updated for version 7.3.1285
Bram Moolenaar <bram@vim.org>
parents:
5062
diff
changeset
|
1977 { |
14e7a115d54d
updated for version 7.3.1285
Bram Moolenaar <bram@vim.org>
parents:
5062
diff
changeset
|
1978 usable_win = 1; |
5062
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1979 break; |
5084
14e7a115d54d
updated for version 7.3.1285
Bram Moolenaar <bram@vim.org>
parents:
5062
diff
changeset
|
1980 } |
5062
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1981 } |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1982 |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1983 if (!usable_win) |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1984 { |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1985 /* Locate a window showing a normal buffer */ |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1986 FOR_ALL_WINDOWS(win) |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1987 if (win->w_buffer->b_p_bt[0] == NUL) |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1988 { |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1989 usable_win = 1; |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1990 break; |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1991 } |
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
1992 } |
644 | 1993 |
7 | 1994 /* |
1621 | 1995 * If no usable window is found and 'switchbuf' contains "usetab" |
1020 | 1996 * then search in other tabs. |
7 | 1997 */ |
1621 | 1998 if (!usable_win && (swb_flags & SWB_USETAB)) |
1020 | 1999 { |
2000 tabpage_T *tp; | |
2001 win_T *wp; | |
2002 | |
2003 FOR_ALL_TAB_WINDOWS(tp, wp) | |
2004 { | |
2005 if (wp->w_buffer->b_fnum == qf_ptr->qf_fnum) | |
2006 { | |
2007 goto_tabpage_win(tp, wp); | |
2008 usable_win = 1; | |
1819 | 2009 goto win_found; |
1020 | 2010 } |
2011 } | |
2012 } | |
1819 | 2013 win_found: |
1020 | 2014 |
2015 /* | |
1396 | 2016 * If there is only one window and it is the quickfix window, create a |
2017 * new one above the quickfix window. | |
1020 | 2018 */ |
2019 if (((firstwin == lastwin) && bt_quickfix(curbuf)) || !usable_win) | |
7 | 2020 { |
1822 | 2021 flags = WSP_ABOVE; |
2022 if (ll_ref != NULL) | |
2023 flags |= WSP_NEWLOC; | |
2024 if (win_split(0, flags) == FAIL) | |
7 | 2025 goto failed; /* not enough room for window */ |
2026 opened_window = TRUE; /* close it when fail */ | |
2027 p_swb = empty_option; /* don't split again */ | |
1621 | 2028 swb_flags = 0; |
2583 | 2029 RESET_BINDING(curwin); |
644 | 2030 if (ll_ref != NULL) |
2031 { | |
2032 /* The new window should use the location list from the | |
2033 * location list window */ | |
2034 curwin->w_llist = ll_ref; | |
2035 ll_ref->qf_refcount++; | |
2036 } | |
7 | 2037 } |
2038 else | |
2039 { | |
644 | 2040 if (curwin->w_llist_ref != NULL) |
2041 { | |
2042 /* In a location window */ | |
5062
761cef8f5d1d
updated for version 7.3.1274
Bram Moolenaar <bram@vim.org>
parents:
5060
diff
changeset
|
2043 win = usable_win_ptr; |
644 | 2044 if (win == NULL) |
2045 { | |
2046 /* Find the window showing the selected file */ | |
2047 FOR_ALL_WINDOWS(win) | |
2048 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum) | |
2049 break; | |
2050 if (win == NULL) | |
2051 { | |
2052 /* Find a previous usable window */ | |
2053 win = curwin; | |
2054 do | |
2055 { | |
2056 if (win->w_buffer->b_p_bt[0] == NUL) | |
2057 break; | |
2058 if (win->w_prev == NULL) | |
2059 win = lastwin; /* wrap around the top */ | |
2060 else | |
2061 win = win->w_prev; /* go to previous window */ | |
2062 } while (win != curwin); | |
2063 } | |
2064 } | |
2065 win_goto(win); | |
2066 | |
2067 /* If the location list for the window is not set, then set it | |
2068 * to the location list from the location window */ | |
2069 if (win->w_llist == NULL) | |
2070 { | |
2071 win->w_llist = ll_ref; | |
2072 ll_ref->qf_refcount++; | |
2073 } | |
2074 } | |
2075 else | |
2076 { | |
2077 | |
7 | 2078 /* |
2079 * Try to find a window that shows the right buffer. | |
2080 * Default to the window just above the quickfix buffer. | |
2081 */ | |
2082 win = curwin; | |
2083 altwin = NULL; | |
2084 for (;;) | |
2085 { | |
2086 if (win->w_buffer->b_fnum == qf_ptr->qf_fnum) | |
2087 break; | |
2088 if (win->w_prev == NULL) | |
2089 win = lastwin; /* wrap around the top */ | |
2090 else | |
2091 win = win->w_prev; /* go to previous window */ | |
2092 | |
644 | 2093 if (IS_QF_WINDOW(win)) |
7 | 2094 { |
2095 /* Didn't find it, go to the window before the quickfix | |
2096 * window. */ | |
2097 if (altwin != NULL) | |
2098 win = altwin; | |
2099 else if (curwin->w_prev != NULL) | |
2100 win = curwin->w_prev; | |
2101 else | |
2102 win = curwin->w_next; | |
2103 break; | |
2104 } | |
2105 | |
2106 /* Remember a usable window. */ | |
2107 if (altwin == NULL && !win->w_p_pvw | |
2108 && win->w_buffer->b_p_bt[0] == NUL) | |
2109 altwin = win; | |
2110 } | |
2111 | |
2112 win_goto(win); | |
644 | 2113 } |
7 | 2114 } |
2115 } | |
2116 #endif | |
2117 | |
2118 /* | |
2119 * If there is a file name, | |
2120 * read the wanted file if needed, and check autowrite etc. | |
2121 */ | |
2122 old_curbuf = curbuf; | |
2123 old_lnum = curwin->w_cursor.lnum; | |
9 | 2124 |
2125 if (qf_ptr->qf_fnum != 0) | |
2126 { | |
2127 if (qf_ptr->qf_type == 1) | |
2128 { | |
2129 /* Open help file (do_ecmd() will set b_help flag, readfile() will | |
2130 * set b_p_ro flag). */ | |
2131 if (!can_abandon(curbuf, forceit)) | |
2132 { | |
2133 EMSG(_(e_nowrtmsg)); | |
2134 ok = FALSE; | |
2135 } | |
2136 else | |
2137 ok = do_ecmd(qf_ptr->qf_fnum, NULL, NULL, NULL, (linenr_T)1, | |
1743 | 2138 ECMD_HIDE + ECMD_SET_HELP, |
2139 oldwin == curwin ? curwin : NULL); | |
9 | 2140 } |
2141 else | |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2142 { |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2143 int old_qf_curlist = qi->qf_curlist; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2144 int is_abort = FALSE; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2145 |
9 | 2146 ok = buflist_getfile(qf_ptr->qf_fnum, |
2147 (linenr_T)1, GETF_SETMARK | GETF_SWITCH, forceit); | |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2148 if (qi != &ql_info && !win_valid(oldwin)) |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2149 { |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2150 EMSG(_("E924: Current window was closed")); |
8702
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2151 is_abort = TRUE; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2152 opened_window = FALSE; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2153 } |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2154 else if (old_qf_curlist != qi->qf_curlist |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2155 || !is_qf_entry_present(qi, qf_ptr)) |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2156 { |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2157 if (qi == &ql_info) |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2158 EMSG(_("E925: Current quickfix was changed")); |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2159 else |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2160 EMSG(_("E926: Current location list was changed")); |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2161 is_abort = TRUE; |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2162 } |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2163 |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2164 if (is_abort) |
39d6e4f2f748
commit https://github.com/vim/vim/commit/ffec3c53496d49668669deabc0724ec78e2274fd
Christian Brabandt <cb@256bit.org>
parents:
8643
diff
changeset
|
2165 { |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2166 ok = FALSE; |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2167 qi = NULL; |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2168 qf_ptr = NULL; |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2169 } |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2170 } |
9 | 2171 } |
2172 | |
2173 if (ok == OK) | |
7 | 2174 { |
2175 /* When not switched to another buffer, still need to set pc mark */ | |
2176 if (curbuf == old_curbuf) | |
2177 setpcmark(); | |
2178 | |
230 | 2179 if (qf_ptr->qf_pattern == NULL) |
7 | 2180 { |
230 | 2181 /* |
2182 * Go to line with error, unless qf_lnum is 0. | |
2183 */ | |
2184 i = qf_ptr->qf_lnum; | |
2185 if (i > 0) | |
2186 { | |
2187 if (i > curbuf->b_ml.ml_line_count) | |
2188 i = curbuf->b_ml.ml_line_count; | |
2189 curwin->w_cursor.lnum = i; | |
2190 } | |
2191 if (qf_ptr->qf_col > 0) | |
7 | 2192 { |
230 | 2193 curwin->w_cursor.col = qf_ptr->qf_col - 1; |
6853 | 2194 #ifdef FEAT_VIRTUALEDIT |
2195 curwin->w_cursor.coladd = 0; | |
2196 #endif | |
230 | 2197 if (qf_ptr->qf_viscol == TRUE) |
7 | 2198 { |
230 | 2199 /* |
2200 * Check each character from the beginning of the error | |
2201 * line up to the error column. For each tab character | |
2202 * found, reduce the error column value by the length of | |
2203 * a tab character. | |
2204 */ | |
2205 line = ml_get_curline(); | |
2206 screen_col = 0; | |
2207 for (char_col = 0; char_col < curwin->w_cursor.col; ++char_col) | |
7 | 2208 { |
230 | 2209 if (*line == NUL) |
2210 break; | |
2211 if (*line++ == '\t') | |
2212 { | |
2213 curwin->w_cursor.col -= 7 - (screen_col % 8); | |
2214 screen_col += 8 - (screen_col % 8); | |
2215 } | |
2216 else | |
2217 ++screen_col; | |
7 | 2218 } |
2219 } | |
230 | 2220 check_cursor(); |
7 | 2221 } |
230 | 2222 else |
2223 beginline(BL_WHITE | BL_FIX); | |
7 | 2224 } |
2225 else | |
230 | 2226 { |
2227 pos_T save_cursor; | |
2228 | |
2229 /* Move the cursor to the first line in the buffer */ | |
2230 save_cursor = curwin->w_cursor; | |
2231 curwin->w_cursor.lnum = 0; | |
1521 | 2232 if (!do_search(NULL, '/', qf_ptr->qf_pattern, (long)1, |
2233 SEARCH_KEEP, NULL)) | |
230 | 2234 curwin->w_cursor = save_cursor; |
2235 } | |
7 | 2236 |
2237 #ifdef FEAT_FOLDING | |
2238 if ((fdo_flags & FDO_QUICKFIX) && old_KeyTyped) | |
2239 foldOpenCursor(); | |
2240 #endif | |
2241 if (print_message) | |
2242 { | |
3267 | 2243 /* Update the screen before showing the message, unless the screen |
2244 * scrolled up. */ | |
2245 if (!msg_scrolled) | |
2246 update_topline_redraw(); | |
7 | 2247 sprintf((char *)IObuff, _("(%d of %d)%s%s: "), qf_index, |
644 | 2248 qi->qf_lists[qi->qf_curlist].qf_count, |
7 | 2249 qf_ptr->qf_cleared ? _(" (line deleted)") : "", |
2250 (char *)qf_types(qf_ptr->qf_type, qf_ptr->qf_nr)); | |
2251 /* Add the message, skipping leading whitespace and newlines. */ | |
2252 len = (int)STRLEN(IObuff); | |
2253 qf_fmt_text(skipwhite(qf_ptr->qf_text), IObuff + len, IOSIZE - len); | |
2254 | |
2255 /* Output the message. Overwrite to avoid scrolling when the 'O' | |
2256 * flag is present in 'shortmess'; But when not jumping, print the | |
2257 * whole message. */ | |
2258 i = msg_scroll; | |
2259 if (curbuf == old_curbuf && curwin->w_cursor.lnum == old_lnum) | |
2260 msg_scroll = TRUE; | |
2261 else if (!msg_scrolled && shortmess(SHM_OVERALL)) | |
2262 msg_scroll = FALSE; | |
2263 msg_attr_keep(IObuff, 0, TRUE); | |
2264 msg_scroll = i; | |
2265 } | |
2266 } | |
2267 else | |
2268 { | |
2269 #ifdef FEAT_WINDOWS | |
2270 if (opened_window) | |
2271 win_close(curwin, TRUE); /* Close opened window */ | |
2272 #endif | |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2273 if (qf_ptr != NULL && qf_ptr->qf_fnum != 0) |
7 | 2274 { |
2275 /* | |
2276 * Couldn't open file, so put index back where it was. This could | |
2277 * happen if the file was readonly and we changed something. | |
2278 */ | |
2279 #ifdef FEAT_WINDOWS | |
2280 failed: | |
2281 #endif | |
2282 qf_ptr = old_qf_ptr; | |
2283 qf_index = old_qf_index; | |
2284 } | |
2285 } | |
2286 theend: | |
8605
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2287 if (qi != NULL) |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2288 { |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2289 qi->qf_lists[qi->qf_curlist].qf_ptr = qf_ptr; |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2290 qi->qf_lists[qi->qf_curlist].qf_index = qf_index; |
536b9b88d1ca
commit https://github.com/vim/vim/commit/0899d698030ec076eb26352cda1ea334ab0819d9
Christian Brabandt <cb@256bit.org>
parents:
8603
diff
changeset
|
2291 } |
7 | 2292 #ifdef FEAT_WINDOWS |
2293 if (p_swb != old_swb && opened_window) | |
2294 { | |
2295 /* Restore old 'switchbuf' value, but not when an autocommand or | |
2296 * modeline has changed the value. */ | |
2297 if (p_swb == empty_option) | |
1621 | 2298 { |
7 | 2299 p_swb = old_swb; |
1621 | 2300 swb_flags = old_swb_flags; |
2301 } | |
7 | 2302 else |
2303 free_string_option(old_swb); | |
2304 } | |
2305 #endif | |
2306 } | |
2307 | |
2308 /* | |
2309 * ":clist": list all errors | |
644 | 2310 * ":llist": list all locations |
7 | 2311 */ |
2312 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2313 qf_list(exarg_T *eap) |
7 | 2314 { |
230 | 2315 buf_T *buf; |
2316 char_u *fname; | |
2317 qfline_T *qfp; | |
2318 int i; | |
2319 int idx1 = 1; | |
2320 int idx2 = -1; | |
2321 char_u *arg = eap->arg; | |
9379
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2322 int plus = FALSE; |
230 | 2323 int all = eap->forceit; /* if not :cl!, only show |
7 | 2324 recognised errors */ |
644 | 2325 qf_info_T *qi = &ql_info; |
2326 | |
2327 if (eap->cmdidx == CMD_llist) | |
2328 { | |
2329 qi = GET_LOC_LIST(curwin); | |
2330 if (qi == NULL) | |
2331 { | |
2332 EMSG(_(e_loclist)); | |
2333 return; | |
2334 } | |
2335 } | |
2336 | |
2337 if (qi->qf_curlist >= qi->qf_listcount | |
2338 || qi->qf_lists[qi->qf_curlist].qf_count == 0) | |
7 | 2339 { |
2340 EMSG(_(e_quickfix)); | |
2341 return; | |
2342 } | |
9379
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2343 if (*arg == '+') |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2344 { |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2345 ++arg; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2346 plus = TRUE; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2347 } |
7 | 2348 if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL) |
2349 { | |
2350 EMSG(_(e_trailing)); | |
2351 return; | |
2352 } | |
9379
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2353 if (plus) |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2354 { |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2355 i = qi->qf_lists[qi->qf_curlist].qf_index; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2356 idx2 = i + idx1; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2357 idx1 = i; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2358 } |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2359 else |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2360 { |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2361 i = qi->qf_lists[qi->qf_curlist].qf_count; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2362 if (idx1 < 0) |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2363 idx1 = (-idx1 > i) ? 0 : idx1 + i + 1; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2364 if (idx2 < 0) |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2365 idx2 = (-idx2 > i) ? 0 : idx2 + i + 1; |
b398e4e12751
commit https://github.com/vim/vim/commit/e8fea0728a2fa1fe78ef0ac90dee1a84bd7ef9fb
Christian Brabandt <cb@256bit.org>
parents:
9369
diff
changeset
|
2366 } |
7 | 2367 |
644 | 2368 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid) |
7 | 2369 all = TRUE; |
644 | 2370 qfp = qi->qf_lists[qi->qf_curlist].qf_start; |
2371 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ) | |
7 | 2372 { |
2373 if ((qfp->qf_valid || all) && idx1 <= i && i <= idx2) | |
2374 { | |
2047
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
2375 msg_putchar('\n'); |
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
2376 if (got_int) |
85da03763130
updated for version 7.2.333
Bram Moolenaar <bram@zimbu.org>
parents:
1918
diff
changeset
|
2377 break; |
446 | 2378 |
2379 fname = NULL; | |
2380 if (qfp->qf_fnum != 0 | |
7 | 2381 && (buf = buflist_findnr(qfp->qf_fnum)) != NULL) |
446 | 2382 { |
2383 fname = buf->b_fname; | |
2384 if (qfp->qf_type == 1) /* :helpgrep */ | |
2385 fname = gettail(fname); | |
2386 } | |
2387 if (fname == NULL) | |
2388 sprintf((char *)IObuff, "%2d", i); | |
2389 else | |
2390 vim_snprintf((char *)IObuff, IOSIZE, "%2d %s", | |
273 | 2391 i, (char *)fname); |
644 | 2392 msg_outtrans_attr(IObuff, i == qi->qf_lists[qi->qf_curlist].qf_index |
446 | 2393 ? hl_attr(HLF_L) : hl_attr(HLF_D)); |
2394 if (qfp->qf_lnum == 0) | |
2395 IObuff[0] = NUL; | |
2396 else if (qfp->qf_col == 0) | |
2397 sprintf((char *)IObuff, ":%ld", qfp->qf_lnum); | |
2398 else | |
2399 sprintf((char *)IObuff, ":%ld col %d", | |
7 | 2400 qfp->qf_lnum, qfp->qf_col); |
446 | 2401 sprintf((char *)IObuff + STRLEN(IObuff), "%s:", |
7 | 2402 (char *)qf_types(qfp->qf_type, qfp->qf_nr)); |
446 | 2403 msg_puts_attr(IObuff, hl_attr(HLF_N)); |
2404 if (qfp->qf_pattern != NULL) | |
2405 { | |
2406 qf_fmt_text(qfp->qf_pattern, IObuff, IOSIZE); | |
2407 STRCAT(IObuff, ":"); | |
2408 msg_puts(IObuff); | |
2409 } | |
2410 msg_puts((char_u *)" "); | |
230 | 2411 |
446 | 2412 /* Remove newlines and leading whitespace from the text. For an |
2413 * unrecognized line keep the indent, the compiler may mark a word | |
2414 * with ^^^^. */ | |
2415 qf_fmt_text((fname != NULL || qfp->qf_lnum != 0) | |
7 | 2416 ? skipwhite(qfp->qf_text) : qfp->qf_text, |
2417 IObuff, IOSIZE); | |
446 | 2418 msg_prt_line(IObuff, FALSE); |
2419 out_flush(); /* show one line at a time */ | |
7 | 2420 } |
446 | 2421 |
2422 qfp = qfp->qf_next; | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2423 if (qfp == NULL) |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2424 break; |
446 | 2425 ++i; |
7 | 2426 ui_breakcheck(); |
2427 } | |
2428 } | |
2429 | |
2430 /* | |
2431 * Remove newlines and leading whitespace from an error message. | |
2432 * Put the result in "buf[bufsize]". | |
2433 */ | |
2434 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2435 qf_fmt_text(char_u *text, char_u *buf, int bufsize) |
7 | 2436 { |
2437 int i; | |
2438 char_u *p = text; | |
2439 | |
2440 for (i = 0; *p != NUL && i < bufsize - 1; ++i) | |
2441 { | |
2442 if (*p == '\n') | |
2443 { | |
2444 buf[i] = ' '; | |
2445 while (*++p != NUL) | |
2446 if (!vim_iswhite(*p) && *p != '\n') | |
2447 break; | |
2448 } | |
2449 else | |
2450 buf[i] = *p++; | |
2451 } | |
2452 buf[i] = NUL; | |
2453 } | |
2454 | |
2455 /* | |
2456 * ":colder [count]": Up in the quickfix stack. | |
2457 * ":cnewer [count]": Down in the quickfix stack. | |
644 | 2458 * ":lolder [count]": Up in the location list stack. |
2459 * ":lnewer [count]": Down in the location list stack. | |
7 | 2460 */ |
2461 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2462 qf_age(exarg_T *eap) |
7 | 2463 { |
644 | 2464 qf_info_T *qi = &ql_info; |
7 | 2465 int count; |
2466 | |
644 | 2467 if (eap->cmdidx == CMD_lolder || eap->cmdidx == CMD_lnewer) |
2468 { | |
2469 qi = GET_LOC_LIST(curwin); | |
2470 if (qi == NULL) | |
2471 { | |
2472 EMSG(_(e_loclist)); | |
2473 return; | |
2474 } | |
2475 } | |
2476 | |
7 | 2477 if (eap->addr_count != 0) |
2478 count = eap->line2; | |
2479 else | |
2480 count = 1; | |
2481 while (count--) | |
2482 { | |
644 | 2483 if (eap->cmdidx == CMD_colder || eap->cmdidx == CMD_lolder) |
7 | 2484 { |
644 | 2485 if (qi->qf_curlist == 0) |
7 | 2486 { |
2487 EMSG(_("E380: At bottom of quickfix stack")); | |
4371 | 2488 break; |
7 | 2489 } |
644 | 2490 --qi->qf_curlist; |
7 | 2491 } |
2492 else | |
2493 { | |
644 | 2494 if (qi->qf_curlist >= qi->qf_listcount - 1) |
7 | 2495 { |
2496 EMSG(_("E381: At top of quickfix stack")); | |
4371 | 2497 break; |
7 | 2498 } |
644 | 2499 ++qi->qf_curlist; |
7 | 2500 } |
2501 } | |
644 | 2502 qf_msg(qi); |
7 | 2503 } |
2504 | |
2505 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2506 qf_msg(qf_info_T *qi) |
7 | 2507 { |
2508 smsg((char_u *)_("error list %d of %d; %d errors"), | |
644 | 2509 qi->qf_curlist + 1, qi->qf_listcount, |
2510 qi->qf_lists[qi->qf_curlist].qf_count); | |
7 | 2511 #ifdef FEAT_WINDOWS |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
2512 qf_update_buffer(qi, NULL); |
7 | 2513 #endif |
2514 } | |
2515 | |
2516 /* | |
581 | 2517 * Free error list "idx". |
7 | 2518 */ |
2519 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2520 qf_free(qf_info_T *qi, int idx) |
7 | 2521 { |
230 | 2522 qfline_T *qfp; |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2523 qfline_T *qfpnext; |
3982 | 2524 int stop = FALSE; |
7 | 2525 |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2526 while (qi->qf_lists[idx].qf_count && qi->qf_lists[idx].qf_start != NULL) |
7 | 2527 { |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2528 qfp = qi->qf_lists[idx].qf_start; |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2529 qfpnext = qfp->qf_next; |
3982 | 2530 if (qi->qf_lists[idx].qf_title != NULL && !stop) |
3949 | 2531 { |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2532 vim_free(qfp->qf_text); |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2533 stop = (qfp == qfpnext); |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2534 vim_free(qfp->qf_pattern); |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2535 vim_free(qfp); |
3982 | 2536 if (stop) |
2537 /* Somehow qf_count may have an incorrect value, set it to 1 | |
2538 * to avoid crashing when it's wrong. | |
2539 * TODO: Avoid qf_count being incorrect. */ | |
2540 qi->qf_lists[idx].qf_count = 1; | |
3949 | 2541 } |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2542 qi->qf_lists[idx].qf_start = qfpnext; |
644 | 2543 --qi->qf_lists[idx].qf_count; |
7 | 2544 } |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
2545 vim_free(qi->qf_lists[idx].qf_title); |
2576 | 2546 qi->qf_lists[idx].qf_title = NULL; |
6081 | 2547 qi->qf_lists[idx].qf_index = 0; |
9397
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2548 |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2549 qf_clean_dir_stack(&qi->qf_dir_stack); |
e08e8b00fe48
commit https://github.com/vim/vim/commit/361c8f0e517e41f1f1d34dae328044406fde80ac
Christian Brabandt <cb@256bit.org>
parents:
9389
diff
changeset
|
2550 qf_clean_dir_stack(&qi->qf_file_stack); |
7 | 2551 } |
2552 | |
2553 /* | |
2554 * qf_mark_adjust: adjust marks | |
2555 */ | |
2556 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2557 qf_mark_adjust( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2558 win_T *wp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2559 linenr_T line1, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2560 linenr_T line2, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2561 long amount, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2562 long amount_after) |
7 | 2563 { |
230 | 2564 int i; |
2565 qfline_T *qfp; | |
2566 int idx; | |
644 | 2567 qf_info_T *qi = &ql_info; |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2568 int found_one = FALSE; |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2569 |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2570 if (!curbuf->b_has_qf_entry) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2571 return; |
644 | 2572 if (wp != NULL) |
2573 { | |
2574 if (wp->w_llist == NULL) | |
2575 return; | |
2576 qi = wp->w_llist; | |
2577 } | |
2578 | |
2579 for (idx = 0; idx < qi->qf_listcount; ++idx) | |
2580 if (qi->qf_lists[idx].qf_count) | |
2581 for (i = 0, qfp = qi->qf_lists[idx].qf_start; | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2582 i < qi->qf_lists[idx].qf_count && qfp != NULL; |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
2583 ++i, qfp = qfp->qf_next) |
7 | 2584 if (qfp->qf_fnum == curbuf->b_fnum) |
2585 { | |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2586 found_one = TRUE; |
7 | 2587 if (qfp->qf_lnum >= line1 && qfp->qf_lnum <= line2) |
2588 { | |
2589 if (amount == MAXLNUM) | |
2590 qfp->qf_cleared = TRUE; | |
2591 else | |
2592 qfp->qf_lnum += amount; | |
2593 } | |
2594 else if (amount_after && qfp->qf_lnum > line2) | |
2595 qfp->qf_lnum += amount_after; | |
2596 } | |
9201
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2597 |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2598 if (!found_one) |
692e156c7023
commit https://github.com/vim/vim/commit/2f095a4bc4d786e0ac834f48dd18a94fe2d140e3
Christian Brabandt <cb@256bit.org>
parents:
9197
diff
changeset
|
2599 curbuf->b_has_qf_entry = FALSE; |
7 | 2600 } |
2601 | |
2602 /* | |
2603 * Make a nice message out of the error character and the error number: | |
2604 * char number message | |
2605 * e or E 0 " error" | |
2606 * w or W 0 " warning" | |
2607 * i or I 0 " info" | |
2608 * 0 0 "" | |
2609 * other 0 " c" | |
2610 * e or E n " error n" | |
2611 * w or W n " warning n" | |
2612 * i or I n " info n" | |
2613 * 0 n " error n" | |
2614 * other n " c n" | |
2615 * 1 x "" :helpgrep | |
2616 */ | |
2617 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2618 qf_types(int c, int nr) |
7 | 2619 { |
2620 static char_u buf[20]; | |
2621 static char_u cc[3]; | |
2622 char_u *p; | |
2623 | |
2624 if (c == 'W' || c == 'w') | |
2625 p = (char_u *)" warning"; | |
2626 else if (c == 'I' || c == 'i') | |
2627 p = (char_u *)" info"; | |
2628 else if (c == 'E' || c == 'e' || (c == 0 && nr > 0)) | |
2629 p = (char_u *)" error"; | |
2630 else if (c == 0 || c == 1) | |
2631 p = (char_u *)""; | |
2632 else | |
2633 { | |
2634 cc[0] = ' '; | |
2635 cc[1] = c; | |
2636 cc[2] = NUL; | |
2637 p = cc; | |
2638 } | |
2639 | |
2640 if (nr <= 0) | |
2641 return p; | |
2642 | |
2643 sprintf((char *)buf, "%s %3d", (char *)p, nr); | |
2644 return buf; | |
2645 } | |
2646 | |
2647 #if defined(FEAT_WINDOWS) || defined(PROTO) | |
2648 /* | |
2649 * ":cwindow": open the quickfix window if we have errors to display, | |
2650 * close it if not. | |
644 | 2651 * ":lwindow": open the location list window if we have locations to display, |
2652 * close it if not. | |
7 | 2653 */ |
2654 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2655 ex_cwindow(exarg_T *eap) |
7 | 2656 { |
644 | 2657 qf_info_T *qi = &ql_info; |
7 | 2658 win_T *win; |
2659 | |
644 | 2660 if (eap->cmdidx == CMD_lwindow) |
2661 { | |
2662 qi = GET_LOC_LIST(curwin); | |
2663 if (qi == NULL) | |
2664 return; | |
2665 } | |
2666 | |
2667 /* Look for an existing quickfix window. */ | |
2668 win = qf_find_win(qi); | |
7 | 2669 |
2670 /* | |
2671 * If a quickfix window is open but we have no errors to display, | |
2672 * close the window. If a quickfix window is not open, then open | |
2673 * it if we have errors; otherwise, leave it closed. | |
2674 */ | |
644 | 2675 if (qi->qf_lists[qi->qf_curlist].qf_nonevalid |
2795 | 2676 || qi->qf_lists[qi->qf_curlist].qf_count == 0 |
857 | 2677 || qi->qf_curlist >= qi->qf_listcount) |
7 | 2678 { |
2679 if (win != NULL) | |
2680 ex_cclose(eap); | |
2681 } | |
2682 else if (win == NULL) | |
2683 ex_copen(eap); | |
2684 } | |
2685 | |
2686 /* | |
2687 * ":cclose": close the window showing the list of errors. | |
644 | 2688 * ":lclose": close the window showing the location list |
7 | 2689 */ |
2690 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2691 ex_cclose(exarg_T *eap) |
7 | 2692 { |
644 | 2693 win_T *win = NULL; |
2694 qf_info_T *qi = &ql_info; | |
2695 | |
2696 if (eap->cmdidx == CMD_lclose || eap->cmdidx == CMD_lwindow) | |
2697 { | |
2698 qi = GET_LOC_LIST(curwin); | |
2699 if (qi == NULL) | |
2700 return; | |
2701 } | |
2702 | |
2703 /* Find existing quickfix window and close it. */ | |
2704 win = qf_find_win(qi); | |
7 | 2705 if (win != NULL) |
2706 win_close(win, FALSE); | |
2707 } | |
2708 | |
2709 /* | |
2710 * ":copen": open a window that shows the list of errors. | |
644 | 2711 * ":lopen": open a window that shows the location list. |
7 | 2712 */ |
2713 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2714 ex_copen(exarg_T *eap) |
7 | 2715 { |
644 | 2716 qf_info_T *qi = &ql_info; |
7 | 2717 int height; |
2718 win_T *win; | |
682 | 2719 tabpage_T *prevtab = curtab; |
859 | 2720 buf_T *qf_buf; |
1743 | 2721 win_T *oldwin = curwin; |
7 | 2722 |
644 | 2723 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow) |
2724 { | |
2725 qi = GET_LOC_LIST(curwin); | |
2726 if (qi == NULL) | |
2727 { | |
2728 EMSG(_(e_loclist)); | |
2729 return; | |
2730 } | |
2731 } | |
2732 | |
7 | 2733 if (eap->addr_count != 0) |
2734 height = eap->line2; | |
2735 else | |
2736 height = QF_WINHEIGHT; | |
2737 | |
2738 reset_VIsual_and_resel(); /* stop Visual mode */ | |
2739 #ifdef FEAT_GUI | |
2740 need_mouse_correct = TRUE; | |
2741 #endif | |
2742 | |
2743 /* | |
2744 * Find existing quickfix window, or open a new one. | |
2745 */ | |
644 | 2746 win = qf_find_win(qi); |
2747 | |
682 | 2748 if (win != NULL && cmdmod.tab == 0) |
5753 | 2749 { |
7 | 2750 win_goto(win); |
5753 | 2751 if (eap->addr_count != 0) |
2752 { | |
2753 if (cmdmod.split & WSP_VERT) | |
2754 { | |
2755 if (height != W_WIDTH(win)) | |
2756 win_setwidth(height); | |
2757 } | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
2758 else if (height != win->w_height) |
5753 | 2759 win_setheight(height); |
2760 } | |
2761 } | |
7 | 2762 else |
2763 { | |
859 | 2764 qf_buf = qf_find_buf(qi); |
2765 | |
7 | 2766 /* The current window becomes the previous window afterwards. */ |
2767 win = curwin; | |
2768 | |
3939 | 2769 if ((eap->cmdidx == CMD_copen || eap->cmdidx == CMD_cwindow) |
2770 && cmdmod.split == 0) | |
2771 /* Create the new window at the very bottom, except when | |
2772 * :belowright or :aboveleft is used. */ | |
644 | 2773 win_goto(lastwin); |
1822 | 2774 if (win_split(height, WSP_BELOW | WSP_NEWLOC) == FAIL) |
7 | 2775 return; /* not enough room for window */ |
2583 | 2776 RESET_BINDING(curwin); |
7 | 2777 |
644 | 2778 if (eap->cmdidx == CMD_lopen || eap->cmdidx == CMD_lwindow) |
7 | 2779 { |
644 | 2780 /* |
2781 * For the location list window, create a reference to the | |
2782 * location list from the window 'win'. | |
2783 */ | |
2784 curwin->w_llist_ref = win->w_llist; | |
2785 win->w_llist->qf_refcount++; | |
7 | 2786 } |
644 | 2787 |
1743 | 2788 if (oldwin != curwin) |
2789 oldwin = NULL; /* don't store info when in another window */ | |
859 | 2790 if (qf_buf != NULL) |
2791 /* Use the existing quickfix buffer */ | |
2792 (void)do_ecmd(qf_buf->b_fnum, NULL, NULL, NULL, ECMD_ONE, | |
1743 | 2793 ECMD_HIDE + ECMD_OLDBUF, oldwin); |
859 | 2794 else |
2795 { | |
2796 /* Create a new quickfix buffer */ | |
1743 | 2797 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, oldwin); |
859 | 2798 /* switch off 'swapfile' */ |
2799 set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); | |
2800 set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix", | |
729 | 2801 OPT_LOCAL); |
859 | 2802 set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL); |
2651 | 2803 RESET_BINDING(curwin); |
1864 | 2804 #ifdef FEAT_DIFF |
2805 curwin->w_p_diff = FALSE; | |
2806 #endif | |
2807 #ifdef FEAT_FOLDING | |
2808 set_option_value((char_u *)"fdm", 0L, (char_u *)"manual", | |
2809 OPT_LOCAL); | |
2810 #endif | |
859 | 2811 } |
7 | 2812 |
682 | 2813 /* Only set the height when still in the same tab page and there is no |
2814 * window to the side. */ | |
8643
24b43dd167eb
commit https://github.com/vim/vim/commit/44a2f923c00f1384c9ecde12fb5b4711bc20702e
Christian Brabandt <cb@256bit.org>
parents:
8605
diff
changeset
|
2815 if (curtab == prevtab && curwin->w_width == Columns) |
7 | 2816 win_setheight(height); |
2817 curwin->w_p_wfh = TRUE; /* set 'winfixheight' */ | |
2818 if (win_valid(win)) | |
2819 prevwin = win; | |
2820 } | |
2821 | |
6793 | 2822 qf_set_title_var(qi); |
2823 | |
7 | 2824 /* |
2825 * Fill the buffer with the quickfix list. | |
2826 */ | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
2827 qf_fill_buffer(qi, curbuf, NULL); |
644 | 2828 |
2829 curwin->w_cursor.lnum = qi->qf_lists[qi->qf_curlist].qf_index; | |
7 | 2830 curwin->w_cursor.col = 0; |
2831 check_cursor(); | |
2832 update_topline(); /* scroll to show the line */ | |
2833 } | |
2834 | |
2835 /* | |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2836 * Move the cursor in the quickfix window to "lnum". |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2837 */ |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2838 static void |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2839 qf_win_goto(win_T *win, linenr_T lnum) |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2840 { |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2841 win_T *old_curwin = curwin; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2842 |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2843 curwin = win; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2844 curbuf = win->w_buffer; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2845 curwin->w_cursor.lnum = lnum; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2846 curwin->w_cursor.col = 0; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2847 #ifdef FEAT_VIRTUALEDIT |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2848 curwin->w_cursor.coladd = 0; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2849 #endif |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2850 curwin->w_curswant = 0; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2851 update_topline(); /* scroll to show the line */ |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2852 redraw_later(VALID); |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2853 curwin->w_redr_status = TRUE; /* update ruler */ |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2854 curwin = old_curwin; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2855 curbuf = curwin->w_buffer; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2856 } |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2857 |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2858 /* |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2859 * :cbottom/:lbottom commands. |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2860 */ |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2861 void |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2862 ex_cbottom(exarg_T *eap UNUSED) |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2863 { |
9458
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2864 qf_info_T *qi = &ql_info; |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2865 win_T *win; |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2866 |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2867 if (eap->cmdidx == CMD_lbottom) |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2868 { |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2869 qi = GET_LOC_LIST(curwin); |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2870 if (qi == NULL) |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2871 { |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2872 EMSG(_(e_loclist)); |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2873 return; |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2874 } |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2875 } |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2876 |
374afcf9d11d
commit https://github.com/vim/vim/commit/537ef08408c50e0c4104d57f74993b3b0ed9560d
Christian Brabandt <cb@256bit.org>
parents:
9432
diff
changeset
|
2877 win = qf_find_win(qi); |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2878 if (win != NULL && win->w_cursor.lnum != win->w_buffer->b_ml.ml_line_count) |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2879 qf_win_goto(win, win->w_buffer->b_ml.ml_line_count); |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2880 } |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2881 |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2882 /* |
7 | 2883 * Return the number of the current entry (line number in the quickfix |
2884 * window). | |
2885 */ | |
2886 linenr_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2887 qf_current_entry(win_T *wp) |
7 | 2888 { |
644 | 2889 qf_info_T *qi = &ql_info; |
2890 | |
2891 if (IS_LL_WINDOW(wp)) | |
2892 /* In the location list window, use the referenced location list */ | |
2893 qi = wp->w_llist_ref; | |
2894 | |
2895 return qi->qf_lists[qi->qf_curlist].qf_index; | |
7 | 2896 } |
2897 | |
2898 /* | |
2899 * Update the cursor position in the quickfix window to the current error. | |
2900 * Return TRUE if there is a quickfix window. | |
2901 */ | |
2902 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2903 qf_win_pos_update( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2904 qf_info_T *qi, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2905 int old_qf_index) /* previous qf_index or zero */ |
7 | 2906 { |
2907 win_T *win; | |
644 | 2908 int qf_index = qi->qf_lists[qi->qf_curlist].qf_index; |
7 | 2909 |
2910 /* | |
2911 * Put the cursor on the current error in the quickfix window, so that | |
2912 * it's viewable. | |
2913 */ | |
644 | 2914 win = qf_find_win(qi); |
7 | 2915 if (win != NULL |
2916 && qf_index <= win->w_buffer->b_ml.ml_line_count | |
2917 && old_qf_index != qf_index) | |
2918 { | |
2919 if (qf_index > old_qf_index) | |
2920 { | |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2921 win->w_redraw_top = old_qf_index; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2922 win->w_redraw_bot = qf_index; |
7 | 2923 } |
2924 else | |
2925 { | |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2926 win->w_redraw_top = qf_index; |
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2927 win->w_redraw_bot = old_qf_index; |
7 | 2928 } |
9432
abb72f0b9e06
commit https://github.com/vim/vim/commit/dcb170018642ec144cd87d9d9fe076575b8d1263
Christian Brabandt <cb@256bit.org>
parents:
9397
diff
changeset
|
2929 qf_win_goto(win, qf_index); |
7 | 2930 } |
2931 return win != NULL; | |
2932 } | |
2933 | |
2934 /* | |
859 | 2935 * Check whether the given window is displaying the specified quickfix/location |
2936 * list buffer | |
2937 */ | |
2938 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2939 is_qf_win(win_T *win, qf_info_T *qi) |
859 | 2940 { |
2941 /* | |
2942 * A window displaying the quickfix buffer will have the w_llist_ref field | |
2943 * set to NULL. | |
2944 * A window displaying a location list buffer will have the w_llist_ref | |
2945 * pointing to the location list. | |
2946 */ | |
2947 if (bt_quickfix(win->w_buffer)) | |
2948 if ((qi == &ql_info && win->w_llist_ref == NULL) | |
2949 || (qi != &ql_info && win->w_llist_ref == qi)) | |
2950 return TRUE; | |
2951 | |
2952 return FALSE; | |
2953 } | |
2954 | |
2955 /* | |
644 | 2956 * Find a window displaying the quickfix/location list 'qi' |
859 | 2957 * Searches in only the windows opened in the current tab. |
644 | 2958 */ |
2959 static win_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2960 qf_find_win(qf_info_T *qi) |
644 | 2961 { |
2962 win_T *win; | |
2963 | |
2964 FOR_ALL_WINDOWS(win) | |
859 | 2965 if (is_qf_win(win, qi)) |
2966 break; | |
644 | 2967 |
2968 return win; | |
2969 } | |
2970 | |
2971 /* | |
859 | 2972 * Find a quickfix buffer. |
2973 * Searches in windows opened in all the tabs. | |
7 | 2974 */ |
2975 static buf_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2976 qf_find_buf(qf_info_T *qi) |
7 | 2977 { |
859 | 2978 tabpage_T *tp; |
644 | 2979 win_T *win; |
2980 | |
859 | 2981 FOR_ALL_TAB_WINDOWS(tp, win) |
2982 if (is_qf_win(win, qi)) | |
2983 return win->w_buffer; | |
2984 | |
2985 return NULL; | |
7 | 2986 } |
2987 | |
2988 /* | |
2989 * Find the quickfix buffer. If it exists, update the contents. | |
2990 */ | |
2991 static void | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
2992 qf_update_buffer(qf_info_T *qi, qfline_T *old_last) |
7 | 2993 { |
2994 buf_T *buf; | |
3016 | 2995 win_T *win; |
2996 win_T *curwin_save; | |
7 | 2997 aco_save_T aco; |
2998 | |
2999 /* Check if a buffer for the quickfix list exists. Update it. */ | |
644 | 3000 buf = qf_find_buf(qi); |
7 | 3001 if (buf != NULL) |
3002 { | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3003 linenr_T old_line_count = buf->b_ml.ml_line_count; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3004 |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3005 if (old_last == NULL) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3006 /* set curwin/curbuf to buf and save a few things */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3007 aucmd_prepbuf(&aco, buf); |
7 | 3008 |
6793 | 3009 if ((win = qf_find_win(qi)) != NULL) |
3016 | 3010 { |
3011 curwin_save = curwin; | |
3012 curwin = win; | |
6079 | 3013 qf_set_title_var(qi); |
3016 | 3014 curwin = curwin_save; |
3015 } | |
3016 | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3017 qf_fill_buffer(qi, buf, old_last); |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3018 |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3019 if (old_last == NULL) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3020 { |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
3021 (void)qf_win_pos_update(qi, 0); |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3022 |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3023 /* restore curwin/curbuf and a few other things */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3024 aucmd_restbuf(&aco); |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3025 } |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3026 |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3027 /* Only redraw when added lines are visible. This avoids flickering |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3028 * when the added lines are not visible. */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3029 if ((win = qf_find_win(qi)) != NULL && old_line_count < win->w_botline) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3030 redraw_buf_later(buf, NOT_VALID); |
7 | 3031 } |
3032 } | |
3033 | |
6793 | 3034 /* |
3035 * Set "w:quickfix_title" if "qi" has a title. | |
3036 */ | |
3016 | 3037 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3038 qf_set_title_var(qf_info_T *qi) |
3016 | 3039 { |
6793 | 3040 if (qi->qf_lists[qi->qf_curlist].qf_title != NULL) |
3041 set_internal_string_var((char_u *)"w:quickfix_title", | |
3016 | 3042 qi->qf_lists[qi->qf_curlist].qf_title); |
3043 } | |
3044 | |
7 | 3045 /* |
3046 * Fill current buffer with quickfix errors, replacing any previous contents. | |
3047 * curbuf must be the quickfix buffer! | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3048 * If "old_last" is not NULL append the items after this one. |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3049 * When "old_last" is NULL then "buf" must equal "curbuf"! Because |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3050 * ml_delete() is used and autocommands will be triggered. |
7 | 3051 */ |
3052 static void | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3053 qf_fill_buffer(qf_info_T *qi, buf_T *buf, qfline_T *old_last) |
7 | 3054 { |
230 | 3055 linenr_T lnum; |
3056 qfline_T *qfp; | |
3057 buf_T *errbuf; | |
3058 int len; | |
3059 int old_KeyTyped = KeyTyped; | |
7 | 3060 |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3061 if (old_last == NULL) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3062 { |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3063 if (buf != curbuf) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3064 { |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3065 EMSG2(_(e_intern2), "qf_fill_buffer()"); |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3066 return; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3067 } |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3068 |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3069 /* delete all existing lines */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3070 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3071 (void)ml_delete((linenr_T)1, FALSE); |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3072 } |
7 | 3073 |
3074 /* Check if there is anything to display */ | |
644 | 3075 if (qi->qf_curlist < qi->qf_listcount) |
7 | 3076 { |
3077 /* Add one line for each error */ | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3078 if (old_last == NULL) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3079 { |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3080 qfp = qi->qf_lists[qi->qf_curlist].qf_start; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3081 lnum = 0; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3082 } |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3083 else |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3084 { |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3085 qfp = old_last->qf_next; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3086 lnum = buf->b_ml.ml_line_count; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3087 } |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3088 while (lnum < qi->qf_lists[qi->qf_curlist].qf_count) |
7 | 3089 { |
3090 if (qfp->qf_fnum != 0 | |
3091 && (errbuf = buflist_findnr(qfp->qf_fnum)) != NULL | |
3092 && errbuf->b_fname != NULL) | |
3093 { | |
3094 if (qfp->qf_type == 1) /* :helpgrep */ | |
3095 STRCPY(IObuff, gettail(errbuf->b_fname)); | |
3096 else | |
3097 STRCPY(IObuff, errbuf->b_fname); | |
3098 len = (int)STRLEN(IObuff); | |
3099 } | |
3100 else | |
3101 len = 0; | |
3102 IObuff[len++] = '|'; | |
3103 | |
3104 if (qfp->qf_lnum > 0) | |
3105 { | |
3106 sprintf((char *)IObuff + len, "%ld", qfp->qf_lnum); | |
3107 len += (int)STRLEN(IObuff + len); | |
3108 | |
3109 if (qfp->qf_col > 0) | |
3110 { | |
3111 sprintf((char *)IObuff + len, " col %d", qfp->qf_col); | |
3112 len += (int)STRLEN(IObuff + len); | |
3113 } | |
3114 | |
3115 sprintf((char *)IObuff + len, "%s", | |
3116 (char *)qf_types(qfp->qf_type, qfp->qf_nr)); | |
3117 len += (int)STRLEN(IObuff + len); | |
3118 } | |
230 | 3119 else if (qfp->qf_pattern != NULL) |
3120 { | |
3121 qf_fmt_text(qfp->qf_pattern, IObuff + len, IOSIZE - len); | |
3122 len += (int)STRLEN(IObuff + len); | |
3123 } | |
7 | 3124 IObuff[len++] = '|'; |
3125 IObuff[len++] = ' '; | |
3126 | |
3127 /* Remove newlines and leading whitespace from the text. | |
3128 * For an unrecognized line keep the indent, the compiler may | |
3129 * mark a word with ^^^^. */ | |
3130 qf_fmt_text(len > 3 ? skipwhite(qfp->qf_text) : qfp->qf_text, | |
3131 IObuff + len, IOSIZE - len); | |
3132 | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3133 if (ml_append_buf(buf, lnum, IObuff, |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3134 (colnr_T)STRLEN(IObuff) + 1, FALSE) == FAIL) |
7 | 3135 break; |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3136 ++lnum; |
7 | 3137 qfp = qfp->qf_next; |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
3138 if (qfp == NULL) |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
3139 break; |
7 | 3140 } |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3141 |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3142 if (old_last == NULL) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3143 /* Delete the empty line which is now at the end */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3144 (void)ml_delete(lnum + 1, FALSE); |
7 | 3145 } |
3146 | |
3147 /* correct cursor position */ | |
3148 check_lnums(TRUE); | |
3149 | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3150 if (old_last == NULL) |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3151 { |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3152 /* Set the 'filetype' to "qf" each time after filling the buffer. |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3153 * This resembles reading a file into a buffer, it's more logical when |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3154 * using autocommands. */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3155 set_option_value((char_u *)"ft", 0L, (char_u *)"qf", OPT_LOCAL); |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3156 curbuf->b_p_ma = FALSE; |
7 | 3157 |
3158 #ifdef FEAT_AUTOCMD | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3159 keep_filetype = TRUE; /* don't detect 'filetype' */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3160 apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL, |
7 | 3161 FALSE, curbuf); |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3162 apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL, |
7 | 3163 FALSE, curbuf); |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3164 keep_filetype = FALSE; |
7 | 3165 #endif |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3166 /* make sure it will be redrawn */ |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3167 redraw_curbuf_later(NOT_VALID); |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
3168 } |
7 | 3169 |
3170 /* Restore KeyTyped, setting 'filetype' may reset it. */ | |
3171 KeyTyped = old_KeyTyped; | |
3172 } | |
3173 | |
3174 #endif /* FEAT_WINDOWS */ | |
3175 | |
3176 /* | |
3177 * Return TRUE if "buf" is the quickfix buffer. | |
3178 */ | |
3179 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3180 bt_quickfix(buf_T *buf) |
7 | 3181 { |
3242 | 3182 return buf != NULL && buf->b_p_bt[0] == 'q'; |
7 | 3183 } |
3184 | |
3185 /* | |
17 | 3186 * Return TRUE if "buf" is a "nofile" or "acwrite" buffer. |
3187 * This means the buffer name is not a file name. | |
7 | 3188 */ |
3189 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3190 bt_nofile(buf_T *buf) |
7 | 3191 { |
3242 | 3192 return buf != NULL && ((buf->b_p_bt[0] == 'n' && buf->b_p_bt[2] == 'f') |
3193 || buf->b_p_bt[0] == 'a'); | |
7 | 3194 } |
3195 | |
3196 /* | |
3197 * Return TRUE if "buf" is a "nowrite" or "nofile" buffer. | |
3198 */ | |
3199 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3200 bt_dontwrite(buf_T *buf) |
7 | 3201 { |
3242 | 3202 return buf != NULL && buf->b_p_bt[0] == 'n'; |
7 | 3203 } |
3204 | |
3205 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3206 bt_dontwrite_msg(buf_T *buf) |
7 | 3207 { |
3208 if (bt_dontwrite(buf)) | |
3209 { | |
3210 EMSG(_("E382: Cannot write, 'buftype' option is set")); | |
3211 return TRUE; | |
3212 } | |
3213 return FALSE; | |
3214 } | |
3215 | |
3216 /* | |
3217 * Return TRUE if the buffer should be hidden, according to 'hidden', ":hide" | |
3218 * and 'bufhidden'. | |
3219 */ | |
3220 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3221 buf_hide(buf_T *buf) |
7 | 3222 { |
3223 /* 'bufhidden' overrules 'hidden' and ":hide", check it first */ | |
3224 switch (buf->b_p_bh[0]) | |
3225 { | |
3226 case 'u': /* "unload" */ | |
3227 case 'w': /* "wipe" */ | |
3228 case 'd': return FALSE; /* "delete" */ | |
3229 case 'h': return TRUE; /* "hide" */ | |
3230 } | |
3231 return (p_hid || cmdmod.hide); | |
3232 } | |
3233 | |
3234 /* | |
41 | 3235 * Return TRUE when using ":vimgrep" for ":grep". |
3236 */ | |
3237 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3238 grep_internal(cmdidx_T cmdidx) |
41 | 3239 { |
661 | 3240 return ((cmdidx == CMD_grep |
3241 || cmdidx == CMD_lgrep | |
3242 || cmdidx == CMD_grepadd | |
3243 || cmdidx == CMD_lgrepadd) | |
41 | 3244 && STRCMP("internal", |
3245 *curbuf->b_p_gp == NUL ? p_gp : curbuf->b_p_gp) == 0); | |
3246 } | |
3247 | |
3248 /* | |
657 | 3249 * Used for ":make", ":lmake", ":grep", ":lgrep", ":grepadd", and ":lgrepadd" |
7 | 3250 */ |
3251 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3252 ex_make(exarg_T *eap) |
7 | 3253 { |
161 | 3254 char_u *fname; |
7 | 3255 char_u *cmd; |
3256 unsigned len; | |
657 | 3257 win_T *wp = NULL; |
659 | 3258 qf_info_T *qi = &ql_info; |
842 | 3259 int res; |
161 | 3260 #ifdef FEAT_AUTOCMD |
3261 char_u *au_name = NULL; | |
3262 | |
2782 | 3263 /* Redirect ":grep" to ":vimgrep" if 'grepprg' is "internal". */ |
3264 if (grep_internal(eap->cmdidx)) | |
3265 { | |
3266 ex_vimgrep(eap); | |
3267 return; | |
3268 } | |
3269 | |
161 | 3270 switch (eap->cmdidx) |
3271 { | |
661 | 3272 case CMD_make: au_name = (char_u *)"make"; break; |
3273 case CMD_lmake: au_name = (char_u *)"lmake"; break; | |
3274 case CMD_grep: au_name = (char_u *)"grep"; break; | |
3275 case CMD_lgrep: au_name = (char_u *)"lgrep"; break; | |
3276 case CMD_grepadd: au_name = (char_u *)"grepadd"; break; | |
3277 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break; | |
161 | 3278 default: break; |
3279 } | |
3280 if (au_name != NULL) | |
3281 { | |
3282 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, | |
3283 curbuf->b_fname, TRUE, curbuf); | |
532 | 3284 # ifdef FEAT_EVAL |
161 | 3285 if (did_throw || force_abort) |
3286 return; | |
532 | 3287 # endif |
161 | 3288 } |
3289 #endif | |
7 | 3290 |
657 | 3291 if (eap->cmdidx == CMD_lmake || eap->cmdidx == CMD_lgrep |
3292 || eap->cmdidx == CMD_lgrepadd) | |
3293 wp = curwin; | |
3294 | |
7 | 3295 autowrite_all(); |
161 | 3296 fname = get_mef_name(); |
3297 if (fname == NULL) | |
7 | 3298 return; |
161 | 3299 mch_remove(fname); /* in case it's not unique */ |
7 | 3300 |
3301 /* | |
3302 * If 'shellpipe' empty: don't redirect to 'errorfile'. | |
3303 */ | |
3304 len = (unsigned)STRLEN(p_shq) * 2 + (unsigned)STRLEN(eap->arg) + 1; | |
3305 if (*p_sp != NUL) | |
161 | 3306 len += (unsigned)STRLEN(p_sp) + (unsigned)STRLEN(fname) + 3; |
7 | 3307 cmd = alloc(len); |
3308 if (cmd == NULL) | |
3309 return; | |
3310 sprintf((char *)cmd, "%s%s%s", (char *)p_shq, (char *)eap->arg, | |
3311 (char *)p_shq); | |
3312 if (*p_sp != NUL) | |
1872 | 3313 append_redir(cmd, len, p_sp, fname); |
7 | 3314 /* |
3315 * Output a newline if there's something else than the :make command that | |
3316 * was typed (in which case the cursor is in column 0). | |
3317 */ | |
3318 if (msg_col == 0) | |
3319 msg_didout = FALSE; | |
3320 msg_start(); | |
3321 MSG_PUTS(":!"); | |
3322 msg_outtrans(cmd); /* show what we are doing */ | |
3323 | |
3324 /* let the shell know if we are redirecting output or not */ | |
3325 do_shell(cmd, *p_sp != NUL ? SHELL_DOOUT : 0); | |
3326 | |
3327 #ifdef AMIGA | |
3328 out_flush(); | |
3329 /* read window status report and redraw before message */ | |
3330 (void)char_avail(); | |
3331 #endif | |
3332 | |
842 | 3333 res = qf_init(wp, fname, (eap->cmdidx != CMD_make |
657 | 3334 && eap->cmdidx != CMD_lmake) ? p_gefm : p_efm, |
3335 (eap->cmdidx != CMD_grepadd | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3336 && eap->cmdidx != CMD_lgrepadd), |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3337 *eap->cmdlinep); |
2847 | 3338 if (wp != NULL) |
3339 qi = GET_LOC_LIST(wp); | |
842 | 3340 #ifdef FEAT_AUTOCMD |
3341 if (au_name != NULL) | |
2847 | 3342 { |
842 | 3343 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, |
3344 curbuf->b_fname, TRUE, curbuf); | |
2847 | 3345 if (qi->qf_curlist < qi->qf_listcount) |
3346 res = qi->qf_lists[qi->qf_curlist].qf_count; | |
3347 else | |
3348 res = 0; | |
3349 } | |
842 | 3350 #endif |
3351 if (res > 0 && !eap->forceit) | |
659 | 3352 qf_jump(qi, 0, 0, FALSE); /* display first error */ |
7 | 3353 |
161 | 3354 mch_remove(fname); |
3355 vim_free(fname); | |
7 | 3356 vim_free(cmd); |
3357 } | |
3358 | |
3359 /* | |
3360 * Return the name for the errorfile, in allocated memory. | |
3361 * Find a new unique name when 'makeef' contains "##". | |
3362 * Returns NULL for error. | |
3363 */ | |
3364 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3365 get_mef_name(void) |
7 | 3366 { |
3367 char_u *p; | |
3368 char_u *name; | |
3369 static int start = -1; | |
3370 static int off = 0; | |
3371 #ifdef HAVE_LSTAT | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9379
diff
changeset
|
3372 stat_T sb; |
7 | 3373 #endif |
3374 | |
3375 if (*p_mef == NUL) | |
3376 { | |
6721 | 3377 name = vim_tempname('e', FALSE); |
7 | 3378 if (name == NULL) |
3379 EMSG(_(e_notmp)); | |
3380 return name; | |
3381 } | |
3382 | |
3383 for (p = p_mef; *p; ++p) | |
3384 if (p[0] == '#' && p[1] == '#') | |
3385 break; | |
3386 | |
3387 if (*p == NUL) | |
3388 return vim_strsave(p_mef); | |
3389 | |
3390 /* Keep trying until the name doesn't exist yet. */ | |
3391 for (;;) | |
3392 { | |
3393 if (start == -1) | |
3394 start = mch_get_pid(); | |
3395 else | |
3396 off += 19; | |
3397 | |
3398 name = alloc((unsigned)STRLEN(p_mef) + 30); | |
3399 if (name == NULL) | |
3400 break; | |
3401 STRCPY(name, p_mef); | |
3402 sprintf((char *)name + (p - p_mef), "%d%d", start, off); | |
3403 STRCAT(name, p + 2); | |
3404 if (mch_getperm(name) < 0 | |
3405 #ifdef HAVE_LSTAT | |
3406 /* Don't accept a symbolic link, its a security risk. */ | |
3407 && mch_lstat((char *)name, &sb) < 0 | |
3408 #endif | |
3409 ) | |
3410 break; | |
3411 vim_free(name); | |
3412 } | |
3413 return name; | |
3414 } | |
3415 | |
3416 /* | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3417 * Returns the number of valid entries in the current quickfix/location list. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3418 */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3419 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3420 qf_get_size(exarg_T *eap) |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3421 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3422 qf_info_T *qi = &ql_info; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3423 qfline_T *qfp; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3424 int i, sz = 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3425 int prev_fnum = 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3426 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3427 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3428 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3429 /* Location list */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3430 qi = GET_LOC_LIST(curwin); |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3431 if (qi == NULL) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3432 return 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3433 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3434 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3435 for (i = 0, qfp = qi->qf_lists[qi->qf_curlist].qf_start; |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
3436 i < qi->qf_lists[qi->qf_curlist].qf_count && qfp != NULL; |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3437 ++i, qfp = qfp->qf_next) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3438 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3439 if (qfp->qf_valid) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3440 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3441 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3442 sz++; /* Count all valid entries */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3443 else if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3444 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3445 /* Count the number of files */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3446 sz++; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3447 prev_fnum = qfp->qf_fnum; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3448 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3449 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3450 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3451 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3452 return sz; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3453 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3454 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3455 /* |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3456 * Returns the current index of the quickfix/location list. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3457 * Returns 0 if there is an error. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3458 */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3459 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3460 qf_get_cur_idx(exarg_T *eap) |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3461 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3462 qf_info_T *qi = &ql_info; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3463 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3464 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3465 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3466 /* Location list */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3467 qi = GET_LOC_LIST(curwin); |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3468 if (qi == NULL) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3469 return 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3470 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3471 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3472 return qi->qf_lists[qi->qf_curlist].qf_index; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3473 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3474 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3475 /* |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3476 * Returns the current index in the quickfix/location list (counting only valid |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3477 * entries). If no valid entries are in the list, then returns 1. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3478 */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3479 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3480 qf_get_cur_valid_idx(exarg_T *eap) |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3481 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3482 qf_info_T *qi = &ql_info; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3483 qf_list_T *qfl; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3484 qfline_T *qfp; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3485 int i, eidx = 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3486 int prev_fnum = 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3487 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3488 if (eap->cmdidx == CMD_ldo || eap->cmdidx == CMD_lfdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3489 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3490 /* Location list */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3491 qi = GET_LOC_LIST(curwin); |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3492 if (qi == NULL) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3493 return 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3494 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3495 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3496 qfl = &qi->qf_lists[qi->qf_curlist]; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3497 qfp = qfl->qf_start; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3498 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3499 /* check if the list has valid errors */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3500 if (qfl->qf_count <= 0 || qfl->qf_nonevalid) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3501 return 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3502 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3503 for (i = 1; i <= qfl->qf_index && qfp!= NULL; i++, qfp = qfp->qf_next) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3504 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3505 if (qfp->qf_valid) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3506 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3507 if (eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3508 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3509 if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3510 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3511 /* Count the number of files */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3512 eidx++; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3513 prev_fnum = qfp->qf_fnum; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3514 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3515 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3516 else |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3517 eidx++; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3518 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3519 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3520 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3521 return eidx ? eidx : 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3522 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3523 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3524 /* |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3525 * Get the 'n'th valid error entry in the quickfix or location list. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3526 * Used by :cdo, :ldo, :cfdo and :lfdo commands. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3527 * For :cdo and :ldo returns the 'n'th valid error entry. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3528 * For :cfdo and :lfdo returns the 'n'th valid file entry. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3529 */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3530 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3531 qf_get_nth_valid_entry(qf_info_T *qi, int n, int fdo) |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3532 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3533 qf_list_T *qfl = &qi->qf_lists[qi->qf_curlist]; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3534 qfline_T *qfp = qfl->qf_start; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3535 int i, eidx; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3536 int prev_fnum = 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3537 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3538 /* check if the list has valid errors */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3539 if (qfl->qf_count <= 0 || qfl->qf_nonevalid) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3540 return 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3541 |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
3542 for (i = 1, eidx = 0; i <= qfl->qf_count && qfp != NULL; |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3543 i++, qfp = qfp->qf_next) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3544 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3545 if (qfp->qf_valid) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3546 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3547 if (fdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3548 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3549 if (qfp->qf_fnum > 0 && qfp->qf_fnum != prev_fnum) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3550 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3551 /* Count the number of files */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3552 eidx++; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3553 prev_fnum = qfp->qf_fnum; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3554 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3555 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3556 else |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3557 eidx++; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3558 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3559 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3560 if (eidx == n) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3561 break; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3562 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3563 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3564 if (i <= qfl->qf_count) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3565 return i; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3566 else |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3567 return 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3568 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3569 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3570 /* |
7 | 3571 * ":cc", ":crewind", ":cfirst" and ":clast". |
644 | 3572 * ":ll", ":lrewind", ":lfirst" and ":llast". |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3573 * ":cdo", ":ldo", ":cfdo" and ":lfdo" |
7 | 3574 */ |
3575 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3576 ex_cc(exarg_T *eap) |
7 | 3577 { |
659 | 3578 qf_info_T *qi = &ql_info; |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3579 int errornr; |
659 | 3580 |
3581 if (eap->cmdidx == CMD_ll | |
3582 || eap->cmdidx == CMD_lrewind | |
3583 || eap->cmdidx == CMD_lfirst | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3584 || eap->cmdidx == CMD_llast |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3585 || eap->cmdidx == CMD_ldo |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3586 || eap->cmdidx == CMD_lfdo) |
644 | 3587 { |
3588 qi = GET_LOC_LIST(curwin); | |
3589 if (qi == NULL) | |
3590 { | |
3591 EMSG(_(e_loclist)); | |
3592 return; | |
3593 } | |
3594 } | |
3595 | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3596 if (eap->addr_count > 0) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3597 errornr = (int)eap->line2; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3598 else |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3599 { |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3600 if (eap->cmdidx == CMD_cc || eap->cmdidx == CMD_ll) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3601 errornr = 0; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3602 else if (eap->cmdidx == CMD_crewind || eap->cmdidx == CMD_lrewind |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3603 || eap->cmdidx == CMD_cfirst || eap->cmdidx == CMD_lfirst) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3604 errornr = 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3605 else |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3606 errornr = 32767; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3607 } |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3608 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3609 /* For cdo and ldo commands, jump to the nth valid error. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3610 * For cfdo and lfdo commands, jump to the nth valid file entry. |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3611 */ |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3612 if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo || |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3613 eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3614 errornr = qf_get_nth_valid_entry(qi, |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3615 eap->addr_count > 0 ? (int)eap->line1 : 1, |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3616 eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo); |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3617 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3618 qf_jump(qi, 0, errornr, eap->forceit); |
7 | 3619 } |
3620 | |
3621 /* | |
3622 * ":cnext", ":cnfile", ":cNext" and ":cprevious". | |
644 | 3623 * ":lnext", ":lNext", ":lprevious", ":lnfile", ":lNfile" and ":lpfile". |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3624 * Also, used by ":cdo", ":ldo", ":cfdo" and ":lfdo" commands. |
7 | 3625 */ |
3626 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3627 ex_cnext(exarg_T *eap) |
7 | 3628 { |
659 | 3629 qf_info_T *qi = &ql_info; |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3630 int errornr; |
659 | 3631 |
3632 if (eap->cmdidx == CMD_lnext | |
3633 || eap->cmdidx == CMD_lNext | |
3634 || eap->cmdidx == CMD_lprevious | |
3635 || eap->cmdidx == CMD_lnfile | |
3636 || eap->cmdidx == CMD_lNfile | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3637 || eap->cmdidx == CMD_lpfile |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3638 || eap->cmdidx == CMD_ldo |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3639 || eap->cmdidx == CMD_lfdo) |
644 | 3640 { |
3641 qi = GET_LOC_LIST(curwin); | |
3642 if (qi == NULL) | |
3643 { | |
3644 EMSG(_(e_loclist)); | |
3645 return; | |
3646 } | |
3647 } | |
3648 | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3649 if (eap->addr_count > 0 && |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3650 (eap->cmdidx != CMD_cdo && eap->cmdidx != CMD_ldo && |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3651 eap->cmdidx != CMD_cfdo && eap->cmdidx != CMD_lfdo)) |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3652 errornr = (int)eap->line2; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3653 else |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3654 errornr = 1; |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3655 |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3656 qf_jump(qi, (eap->cmdidx == CMD_cnext || eap->cmdidx == CMD_lnext |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3657 || eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo) |
7 | 3658 ? FORWARD |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3659 : (eap->cmdidx == CMD_cnfile || eap->cmdidx == CMD_lnfile |
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3660 || eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo) |
7 | 3661 ? FORWARD_FILE |
644 | 3662 : (eap->cmdidx == CMD_cpfile || eap->cmdidx == CMD_lpfile |
3663 || eap->cmdidx == CMD_cNfile || eap->cmdidx == CMD_lNfile) | |
7 | 3664 ? BACKWARD_FILE |
3665 : BACKWARD, | |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
6853
diff
changeset
|
3666 errornr, eap->forceit); |
7 | 3667 } |
3668 | |
3669 /* | |
446 | 3670 * ":cfile"/":cgetfile"/":caddfile" commands. |
644 | 3671 * ":lfile"/":lgetfile"/":laddfile" commands. |
7 | 3672 */ |
3673 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3674 ex_cfile(exarg_T *eap) |
7 | 3675 { |
644 | 3676 win_T *wp = NULL; |
659 | 3677 qf_info_T *qi = &ql_info; |
3404 | 3678 #ifdef FEAT_AUTOCMD |
3679 char_u *au_name = NULL; | |
3680 #endif | |
644 | 3681 |
3682 if (eap->cmdidx == CMD_lfile || eap->cmdidx == CMD_lgetfile | |
3404 | 3683 || eap->cmdidx == CMD_laddfile) |
644 | 3684 wp = curwin; |
3685 | |
3404 | 3686 #ifdef FEAT_AUTOCMD |
3687 switch (eap->cmdidx) | |
3688 { | |
3689 case CMD_cfile: au_name = (char_u *)"cfile"; break; | |
3690 case CMD_cgetfile: au_name = (char_u *)"cgetfile"; break; | |
3691 case CMD_caddfile: au_name = (char_u *)"caddfile"; break; | |
3692 case CMD_lfile: au_name = (char_u *)"lfile"; break; | |
3693 case CMD_lgetfile: au_name = (char_u *)"lgetfile"; break; | |
3694 case CMD_laddfile: au_name = (char_u *)"laddfile"; break; | |
3695 default: break; | |
3696 } | |
3697 if (au_name != NULL) | |
3698 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, NULL, FALSE, curbuf); | |
3699 #endif | |
2296
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3700 #ifdef FEAT_BROWSE |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3701 if (cmdmod.browse) |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3702 { |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3703 char_u *browse_file = do_browse(0, (char_u *)_("Error file"), eap->arg, |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3704 NULL, NULL, BROWSE_FILTER_ALL_FILES, NULL); |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3705 if (browse_file == NULL) |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3706 return; |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3707 set_string_option_direct((char_u *)"ef", -1, browse_file, OPT_FREE, 0); |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3708 vim_free(browse_file); |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3709 } |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3710 else |
eb7be7b075a6
Support :browse for commands that use an error file argument. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2146
diff
changeset
|
3711 #endif |
7 | 3712 if (*eap->arg != NUL) |
694 | 3713 set_string_option_direct((char_u *)"ef", -1, eap->arg, OPT_FREE, 0); |
446 | 3714 |
3715 /* | |
3716 * This function is used by the :cfile, :cgetfile and :caddfile | |
3717 * commands. | |
3718 * :cfile always creates a new quickfix list and jumps to the | |
3719 * first error. | |
3720 * :cgetfile creates a new quickfix list but doesn't jump to the | |
3721 * first error. | |
3722 * :caddfile adds to an existing quickfix list. If there is no | |
3723 * quickfix list then a new list is created. | |
3724 */ | |
644 | 3725 if (qf_init(wp, p_ef, p_efm, (eap->cmdidx != CMD_caddfile |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3726 && eap->cmdidx != CMD_laddfile), |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
3727 *eap->cmdlinep) > 0 |
644 | 3728 && (eap->cmdidx == CMD_cfile |
3729 || eap->cmdidx == CMD_lfile)) | |
665 | 3730 { |
3404 | 3731 #ifdef FEAT_AUTOCMD |
3732 if (au_name != NULL) | |
3733 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf); | |
3734 #endif | |
665 | 3735 if (wp != NULL) |
3736 qi = GET_LOC_LIST(wp); | |
659 | 3737 qf_jump(qi, 0, 0, eap->forceit); /* display first error */ |
665 | 3738 } |
3404 | 3739 |
3740 else | |
3741 { | |
3742 #ifdef FEAT_AUTOCMD | |
3743 if (au_name != NULL) | |
3744 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, NULL, FALSE, curbuf); | |
3745 #endif | |
3746 } | |
7 | 3747 } |
3748 | |
3749 /* | |
41 | 3750 * ":vimgrep {pattern} file(s)" |
657 | 3751 * ":vimgrepadd {pattern} file(s)" |
3752 * ":lvimgrep {pattern} file(s)" | |
3753 * ":lvimgrepadd {pattern} file(s)" | |
41 | 3754 */ |
3755 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3756 ex_vimgrep(exarg_T *eap) |
41 | 3757 { |
42 | 3758 regmmatch_T regmatch; |
153 | 3759 int fcount; |
41 | 3760 char_u **fnames; |
1411 | 3761 char_u *fname; |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
3762 char_u *title; |
153 | 3763 char_u *s; |
3764 char_u *p; | |
3765 int fi; | |
657 | 3766 qf_info_T *qi = &ql_info; |
4003 | 3767 #ifdef FEAT_AUTOCMD |
3768 qfline_T *cur_qf_start; | |
3769 #endif | |
41 | 3770 long lnum; |
42 | 3771 buf_T *buf; |
3772 int duplicate_name = FALSE; | |
3773 int using_dummy; | |
1396 | 3774 int redraw_for_dummy = FALSE; |
42 | 3775 int found_match; |
123 | 3776 buf_T *first_match_buf = NULL; |
3777 time_t seconds = 0; | |
677 | 3778 int save_mls; |
123 | 3779 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) |
3780 char_u *save_ei = NULL; | |
677 | 3781 #endif |
123 | 3782 aco_save_T aco; |
170 | 3783 int flags = 0; |
3784 colnr_T col; | |
716 | 3785 long tomatch; |
2770 | 3786 char_u *dirname_start = NULL; |
3787 char_u *dirname_now = NULL; | |
1411 | 3788 char_u *target_dir = NULL; |
1683 | 3789 #ifdef FEAT_AUTOCMD |
3790 char_u *au_name = NULL; | |
161 | 3791 |
3792 switch (eap->cmdidx) | |
3793 { | |
2782 | 3794 case CMD_vimgrep: au_name = (char_u *)"vimgrep"; break; |
3795 case CMD_lvimgrep: au_name = (char_u *)"lvimgrep"; break; | |
3796 case CMD_vimgrepadd: au_name = (char_u *)"vimgrepadd"; break; | |
657 | 3797 case CMD_lvimgrepadd: au_name = (char_u *)"lvimgrepadd"; break; |
2782 | 3798 case CMD_grep: au_name = (char_u *)"grep"; break; |
3799 case CMD_lgrep: au_name = (char_u *)"lgrep"; break; | |
3800 case CMD_grepadd: au_name = (char_u *)"grepadd"; break; | |
3801 case CMD_lgrepadd: au_name = (char_u *)"lgrepadd"; break; | |
161 | 3802 default: break; |
3803 } | |
3804 if (au_name != NULL) | |
3805 { | |
3806 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, | |
3807 curbuf->b_fname, TRUE, curbuf); | |
3808 if (did_throw || force_abort) | |
3809 return; | |
3810 } | |
3811 #endif | |
41 | 3812 |
661 | 3813 if (eap->cmdidx == CMD_lgrep |
659 | 3814 || eap->cmdidx == CMD_lvimgrep |
3815 || eap->cmdidx == CMD_lgrepadd | |
3816 || eap->cmdidx == CMD_lvimgrepadd) | |
657 | 3817 { |
3818 qi = ll_get_or_alloc_list(curwin); | |
3819 if (qi == NULL) | |
3820 return; | |
3821 } | |
3822 | |
716 | 3823 if (eap->addr_count > 0) |
3824 tomatch = eap->line2; | |
3825 else | |
3826 tomatch = MAXLNUM; | |
3827 | |
42 | 3828 /* Get the search pattern: either white-separated or enclosed in // */ |
41 | 3829 regmatch.regprog = NULL; |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
3830 title = vim_strsave(*eap->cmdlinep); |
170 | 3831 p = skip_vimgrep_pat(eap->arg, &s, &flags); |
153 | 3832 if (p == NULL) |
41 | 3833 { |
282 | 3834 EMSG(_(e_invalpat)); |
153 | 3835 goto theend; |
41 | 3836 } |
4197 | 3837 |
3838 if (s != NULL && *s == NUL) | |
3839 { | |
3840 /* Pattern is empty, use last search pattern. */ | |
3841 if (last_search_pat() == NULL) | |
3842 { | |
3843 EMSG(_(e_noprevre)); | |
3844 goto theend; | |
3845 } | |
3846 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); | |
3847 } | |
3848 else | |
3849 regmatch.regprog = vim_regcomp(s, RE_MAGIC); | |
3850 | |
41 | 3851 if (regmatch.regprog == NULL) |
3852 goto theend; | |
95 | 3853 regmatch.rmm_ic = p_ic; |
410 | 3854 regmatch.rmm_maxcol = 0; |
41 | 3855 |
3856 p = skipwhite(p); | |
3857 if (*p == NUL) | |
3858 { | |
3859 EMSG(_("E683: File name missing or invalid pattern")); | |
3860 goto theend; | |
3861 } | |
3862 | |
661 | 3863 if ((eap->cmdidx != CMD_grepadd && eap->cmdidx != CMD_lgrepadd && |
657 | 3864 eap->cmdidx != CMD_vimgrepadd && eap->cmdidx != CMD_lvimgrepadd) |
644 | 3865 || qi->qf_curlist == qi->qf_listcount) |
41 | 3866 /* make place for a new list */ |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
3867 qf_new_list(qi, title != NULL ? title : *eap->cmdlinep); |
41 | 3868 |
3869 /* parse the list of arguments */ | |
3620 | 3870 if (get_arglist_exp(p, &fcount, &fnames, TRUE) == FAIL) |
41 | 3871 goto theend; |
3872 if (fcount == 0) | |
3873 { | |
3874 EMSG(_(e_nomatch)); | |
3875 goto theend; | |
3876 } | |
3877 | |
7558
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
3878 dirname_start = alloc_id(MAXPATHL, aid_qf_dirname_start); |
9a4c9dccd603
commit https://github.com/vim/vim/commit/b86a343280b08d6701da68ee0651e960a0a7a61c
Christian Brabandt <cb@256bit.org>
parents:
7515
diff
changeset
|
3879 dirname_now = alloc_id(MAXPATHL, aid_qf_dirname_now); |
2770 | 3880 if (dirname_start == NULL || dirname_now == NULL) |
7662
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
3881 { |
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
3882 FreeWild(fcount, fnames); |
2770 | 3883 goto theend; |
7662
4d34891e98f4
commit https://github.com/vim/vim/commit/61ff4dd6a4d47bd32383fe28087be2b37dec53f4
Christian Brabandt <cb@256bit.org>
parents:
7558
diff
changeset
|
3884 } |
2770 | 3885 |
1411 | 3886 /* Remember the current directory, because a BufRead autocommand that does |
3887 * ":lcd %:p:h" changes the meaning of short path names. */ | |
3888 mch_dirname(dirname_start, MAXPATHL); | |
3889 | |
4003 | 3890 #ifdef FEAT_AUTOCMD |
4352 | 3891 /* Remember the value of qf_start, so that we can check for autocommands |
4003 | 3892 * changing the current quickfix list. */ |
3893 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start; | |
3894 #endif | |
3895 | |
123 | 3896 seconds = (time_t)0; |
716 | 3897 for (fi = 0; fi < fcount && !got_int && tomatch > 0; ++fi) |
41 | 3898 { |
1411 | 3899 fname = shorten_fname1(fnames[fi]); |
123 | 3900 if (time(NULL) > seconds) |
3901 { | |
1411 | 3902 /* Display the file name every second or so, show the user we are |
3903 * working on it. */ | |
123 | 3904 seconds = time(NULL); |
3905 msg_start(); | |
1411 | 3906 p = msg_strtrunc(fname, TRUE); |
123 | 3907 if (p == NULL) |
1411 | 3908 msg_outtrans(fname); |
123 | 3909 else |
3910 { | |
3911 msg_outtrans(p); | |
3912 vim_free(p); | |
3913 } | |
3914 msg_clr_eos(); | |
3915 msg_didout = FALSE; /* overwrite this message */ | |
3916 msg_nowait = TRUE; /* don't wait for this message */ | |
3917 msg_col = 0; | |
3918 out_flush(); | |
3919 } | |
3920 | |
42 | 3921 buf = buflist_findname_exp(fnames[fi]); |
3922 if (buf == NULL || buf->b_ml.ml_mfp == NULL) | |
3923 { | |
3924 /* Remember that a buffer with this name already exists. */ | |
3925 duplicate_name = (buf != NULL); | |
123 | 3926 using_dummy = TRUE; |
1396 | 3927 redraw_for_dummy = TRUE; |
123 | 3928 |
3929 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) | |
3930 /* Don't do Filetype autocommands to avoid loading syntax and | |
3931 * indent scripts, a great speed improvement. */ | |
3932 save_ei = au_event_disable(",Filetype"); | |
3933 #endif | |
677 | 3934 /* Don't use modelines here, it's useless. */ |
3935 save_mls = p_mls; | |
3936 p_mls = 0; | |
42 | 3937 |
3938 /* Load file into a buffer, so that 'fileencoding' is detected, | |
3939 * autocommands applied, etc. */ | |
3490 | 3940 buf = load_dummy_buffer(fname, dirname_start, dirname_now); |
123 | 3941 |
677 | 3942 p_mls = save_mls; |
123 | 3943 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) |
3944 au_event_restore(save_ei); | |
3945 #endif | |
42 | 3946 } |
3947 else | |
3948 /* Use existing, loaded buffer. */ | |
3949 using_dummy = FALSE; | |
123 | 3950 |
4003 | 3951 #ifdef FEAT_AUTOCMD |
3952 if (cur_qf_start != qi->qf_lists[qi->qf_curlist].qf_start) | |
3953 { | |
3954 int idx; | |
3955 | |
3956 /* Autocommands changed the quickfix list. Find the one we were | |
3957 * using and restore it. */ | |
3958 for (idx = 0; idx < LISTCOUNT; ++idx) | |
3959 if (cur_qf_start == qi->qf_lists[idx].qf_start) | |
3960 { | |
3961 qi->qf_curlist = idx; | |
3962 break; | |
3963 } | |
3964 if (idx == LISTCOUNT) | |
3965 { | |
3966 /* List cannot be found, create a new one. */ | |
3967 qf_new_list(qi, *eap->cmdlinep); | |
3968 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start; | |
3969 } | |
3970 } | |
3971 #endif | |
3972 | |
42 | 3973 if (buf == NULL) |
123 | 3974 { |
3975 if (!got_int) | |
1411 | 3976 smsg((char_u *)_("Cannot open file \"%s\""), fname); |
123 | 3977 } |
41 | 3978 else |
3979 { | |
717 | 3980 /* Try for a match in all lines of the buffer. |
3981 * For ":1vimgrep" look for first match only. */ | |
42 | 3982 found_match = FALSE; |
716 | 3983 for (lnum = 1; lnum <= buf->b_ml.ml_line_count && tomatch > 0; |
3984 ++lnum) | |
41 | 3985 { |
170 | 3986 col = 0; |
3987 while (vim_regexec_multi(®match, curwin, buf, lnum, | |
1521 | 3988 col, NULL) > 0) |
41 | 3989 { |
1411 | 3990 ; |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
3991 if (qf_add_entry(qi, |
41 | 3992 NULL, /* dir */ |
1411 | 3993 fname, |
1065 | 3994 0, |
42 | 3995 ml_get_buf(buf, |
3996 regmatch.startpos[0].lnum + lnum, FALSE), | |
3997 regmatch.startpos[0].lnum + lnum, | |
3998 regmatch.startpos[0].col + 1, | |
170 | 3999 FALSE, /* vis_col */ |
230 | 4000 NULL, /* search pattern */ |
856 | 4001 0, /* nr */ |
4002 0, /* type */ | |
4003 TRUE /* valid */ | |
41 | 4004 ) == FAIL) |
4005 { | |
4006 got_int = TRUE; | |
4007 break; | |
4008 } | |
716 | 4009 found_match = TRUE; |
4010 if (--tomatch == 0) | |
4011 break; | |
170 | 4012 if ((flags & VGR_GLOBAL) == 0 |
4013 || regmatch.endpos[0].lnum > 0) | |
4014 break; | |
4015 col = regmatch.endpos[0].col | |
4016 + (col == regmatch.endpos[0].col); | |
1883 | 4017 if (col > (colnr_T)STRLEN(ml_get_buf(buf, lnum, FALSE))) |
170 | 4018 break; |
41 | 4019 } |
4020 line_breakcheck(); | |
42 | 4021 if (got_int) |
4022 break; | |
41 | 4023 } |
4003 | 4024 #ifdef FEAT_AUTOCMD |
4025 cur_qf_start = qi->qf_lists[qi->qf_curlist].qf_start; | |
4026 #endif | |
42 | 4027 |
4028 if (using_dummy) | |
4029 { | |
123 | 4030 if (found_match && first_match_buf == NULL) |
4031 first_match_buf = buf; | |
42 | 4032 if (duplicate_name) |
123 | 4033 { |
42 | 4034 /* Never keep a dummy buffer if there is another buffer |
4035 * with the same name. */ | |
3490 | 4036 wipe_dummy_buffer(buf, dirname_start); |
123 | 4037 buf = NULL; |
4038 } | |
717 | 4039 else if (!cmdmod.hide |
4040 || buf->b_p_bh[0] == 'u' /* "unload" */ | |
4041 || buf->b_p_bh[0] == 'w' /* "wipe" */ | |
4042 || buf->b_p_bh[0] == 'd') /* "delete" */ | |
42 | 4043 { |
717 | 4044 /* When no match was found we don't need to remember the |
4045 * buffer, wipe it out. If there was a match and it | |
4046 * wasn't the first one or we won't jump there: only | |
4047 * unload the buffer. | |
4048 * Ignore 'hidden' here, because it may lead to having too | |
4049 * many swap files. */ | |
42 | 4050 if (!found_match) |
123 | 4051 { |
3490 | 4052 wipe_dummy_buffer(buf, dirname_start); |
123 | 4053 buf = NULL; |
4054 } | |
170 | 4055 else if (buf != first_match_buf || (flags & VGR_NOJUMP)) |
123 | 4056 { |
3490 | 4057 unload_dummy_buffer(buf, dirname_start); |
123 | 4058 buf = NULL; |
4059 } | |
42 | 4060 } |
123 | 4061 |
4062 if (buf != NULL) | |
4063 { | |
1411 | 4064 /* If the buffer is still loaded we need to use the |
4065 * directory we jumped to below. */ | |
4066 if (buf == first_match_buf | |
4067 && target_dir == NULL | |
4068 && STRCMP(dirname_start, dirname_now) != 0) | |
4069 target_dir = vim_strsave(dirname_now); | |
4070 | |
123 | 4071 /* The buffer is still loaded, the Filetype autocommands |
677 | 4072 * need to be done now, in that buffer. And the modelines |
717 | 4073 * need to be done (again). But not the window-local |
4074 * options! */ | |
123 | 4075 aucmd_prepbuf(&aco, buf); |
677 | 4076 #if defined(FEAT_AUTOCMD) && defined(FEAT_SYN_HL) |
123 | 4077 apply_autocmds(EVENT_FILETYPE, buf->b_p_ft, |
4078 buf->b_fname, TRUE, buf); | |
677 | 4079 #endif |
717 | 4080 do_modelines(OPT_NOWIN); |
123 | 4081 aucmd_restbuf(&aco); |
4082 } | |
42 | 4083 } |
41 | 4084 } |
4085 } | |
4086 | |
4087 FreeWild(fcount, fnames); | |
4088 | |
644 | 4089 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; |
4090 qi->qf_lists[qi->qf_curlist].qf_ptr = qi->qf_lists[qi->qf_curlist].qf_start; | |
4091 qi->qf_lists[qi->qf_curlist].qf_index = 1; | |
41 | 4092 |
4093 #ifdef FEAT_WINDOWS | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4094 qf_update_buffer(qi, NULL); |
41 | 4095 #endif |
4096 | |
842 | 4097 #ifdef FEAT_AUTOCMD |
4098 if (au_name != NULL) | |
4099 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, | |
4100 curbuf->b_fname, TRUE, curbuf); | |
4101 #endif | |
4102 | |
41 | 4103 /* Jump to first match. */ |
644 | 4104 if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
170 | 4105 { |
4106 if ((flags & VGR_NOJUMP) == 0) | |
1396 | 4107 { |
4108 buf = curbuf; | |
659 | 4109 qf_jump(qi, 0, 0, eap->forceit); |
1396 | 4110 if (buf != curbuf) |
4111 /* If we jumped to another buffer redrawing will already be | |
4112 * taken care of. */ | |
4113 redraw_for_dummy = FALSE; | |
1411 | 4114 |
4115 /* Jump to the directory used after loading the buffer. */ | |
4116 if (curbuf == first_match_buf && target_dir != NULL) | |
4117 { | |
4118 exarg_T ea; | |
4119 | |
4120 ea.arg = target_dir; | |
4121 ea.cmdidx = CMD_lcd; | |
4122 ex_cd(&ea); | |
4123 } | |
1396 | 4124 } |
170 | 4125 } |
42 | 4126 else |
4127 EMSG2(_(e_nomatch2), s); | |
41 | 4128 |
1396 | 4129 /* If we loaded a dummy buffer into the current window, the autocommands |
4130 * may have messed up things, need to redraw and recompute folds. */ | |
4131 if (redraw_for_dummy) | |
4132 { | |
4133 #ifdef FEAT_FOLDING | |
4134 foldUpdateAll(curwin); | |
4135 #else | |
4136 redraw_later(NOT_VALID); | |
4137 #endif | |
4138 } | |
4139 | |
41 | 4140 theend: |
8603
bfa74b84c41c
commit https://github.com/vim/vim/commit/5584df65a0ca2315d1eebc13c54a448bee4d0758
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
4141 vim_free(title); |
2770 | 4142 vim_free(dirname_now); |
4143 vim_free(dirname_start); | |
1411 | 4144 vim_free(target_dir); |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4371
diff
changeset
|
4145 vim_regfree(regmatch.regprog); |
41 | 4146 } |
4147 | |
4148 /* | |
170 | 4149 * Skip over the pattern argument of ":vimgrep /pat/[g][j]". |
153 | 4150 * Put the start of the pattern in "*s", unless "s" is NULL. |
170 | 4151 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP. |
4152 * If "s" is not NULL terminate the pattern with a NUL. | |
4153 * Return a pointer to the char just past the pattern plus flags. | |
153 | 4154 */ |
4155 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4156 skip_vimgrep_pat(char_u *p, char_u **s, int *flags) |
153 | 4157 { |
4158 int c; | |
4159 | |
4160 if (vim_isIDc(*p)) | |
4161 { | |
170 | 4162 /* ":vimgrep pattern fname" */ |
153 | 4163 if (s != NULL) |
4164 *s = p; | |
170 | 4165 p = skiptowhite(p); |
4166 if (s != NULL && *p != NUL) | |
4167 *p++ = NUL; | |
153 | 4168 } |
170 | 4169 else |
4170 { | |
4171 /* ":vimgrep /pattern/[g][j] fname" */ | |
4172 if (s != NULL) | |
4173 *s = p + 1; | |
4174 c = *p; | |
4175 p = skip_regexp(p + 1, c, TRUE, NULL); | |
4176 if (*p != c) | |
4177 return NULL; | |
4178 | |
4179 /* Truncate the pattern. */ | |
4180 if (s != NULL) | |
4181 *p = NUL; | |
4182 ++p; | |
4183 | |
4184 /* Find the flags */ | |
4185 while (*p == 'g' || *p == 'j') | |
4186 { | |
4187 if (flags != NULL) | |
4188 { | |
4189 if (*p == 'g') | |
4190 *flags |= VGR_GLOBAL; | |
4191 else | |
4192 *flags |= VGR_NOJUMP; | |
4193 } | |
4194 ++p; | |
4195 } | |
4196 } | |
153 | 4197 return p; |
4198 } | |
4199 | |
4200 /* | |
3490 | 4201 * Restore current working directory to "dirname_start" if they differ, taking |
4202 * into account whether it is set locally or globally. | |
4203 */ | |
4204 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4205 restore_start_dir(char_u *dirname_start) |
3490 | 4206 { |
4207 char_u *dirname_now = alloc(MAXPATHL); | |
4208 | |
4209 if (NULL != dirname_now) | |
4210 { | |
4211 mch_dirname(dirname_now, MAXPATHL); | |
4212 if (STRCMP(dirname_start, dirname_now) != 0) | |
4213 { | |
4214 /* If the directory has changed, change it back by building up an | |
4215 * appropriate ex command and executing it. */ | |
4216 exarg_T ea; | |
4217 | |
4218 ea.arg = dirname_start; | |
4219 ea.cmdidx = (curwin->w_localdir == NULL) ? CMD_cd : CMD_lcd; | |
4220 ex_cd(&ea); | |
4221 } | |
3974 | 4222 vim_free(dirname_now); |
3490 | 4223 } |
4224 } | |
4225 | |
4226 /* | |
4227 * Load file "fname" into a dummy buffer and return the buffer pointer, | |
4228 * placing the directory resulting from the buffer load into the | |
4229 * "resulting_dir" pointer. "resulting_dir" must be allocated by the caller | |
4230 * prior to calling this function. Restores directory to "dirname_start" prior | |
4231 * to returning, if autocmds or the 'autochdir' option have changed it. | |
4232 * | |
4233 * If creating the dummy buffer does not fail, must call unload_dummy_buffer() | |
4234 * or wipe_dummy_buffer() later! | |
4235 * | |
42 | 4236 * Returns NULL if it fails. |
4237 */ | |
4238 static buf_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4239 load_dummy_buffer( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4240 char_u *fname, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4241 char_u *dirname_start, /* in: old directory */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4242 char_u *resulting_dir) /* out: new directory */ |
42 | 4243 { |
4244 buf_T *newbuf; | |
2646 | 4245 buf_T *newbuf_to_wipe = NULL; |
42 | 4246 int failed = TRUE; |
4247 aco_save_T aco; | |
4248 | |
4249 /* Allocate a buffer without putting it in the buffer list. */ | |
4250 newbuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY); | |
4251 if (newbuf == NULL) | |
4252 return NULL; | |
4253 | |
177 | 4254 /* Init the options. */ |
4255 buf_copy_options(newbuf, BCO_ENTER | BCO_NOHELP); | |
4256 | |
1918 | 4257 /* need to open the memfile before putting the buffer in a window */ |
4258 if (ml_open(newbuf) == OK) | |
42 | 4259 { |
1918 | 4260 /* set curwin/curbuf to buf and save a few things */ |
4261 aucmd_prepbuf(&aco, newbuf); | |
4262 | |
4263 /* Need to set the filename for autocommands. */ | |
4264 (void)setfname(curbuf, fname, NULL, FALSE); | |
4265 | |
42 | 4266 /* Create swap file now to avoid the ATTENTION message. */ |
4267 check_need_swap(TRUE); | |
4268 | |
4269 /* Remove the "dummy" flag, otherwise autocommands may not | |
4270 * work. */ | |
4271 curbuf->b_flags &= ~BF_DUMMY; | |
4272 | |
4273 if (readfile(fname, NULL, | |
4274 (linenr_T)0, (linenr_T)0, (linenr_T)MAXLNUM, | |
4275 NULL, READ_NEW | READ_DUMMY) == OK | |
857 | 4276 && !got_int |
42 | 4277 && !(curbuf->b_flags & BF_NEW)) |
4278 { | |
4279 failed = FALSE; | |
4280 if (curbuf != newbuf) | |
4281 { | |
2646 | 4282 /* Bloody autocommands changed the buffer! Can happen when |
4283 * using netrw and editing a remote file. Use the current | |
4284 * buffer instead, delete the dummy one after restoring the | |
4285 * window stuff. */ | |
4286 newbuf_to_wipe = newbuf; | |
42 | 4287 newbuf = curbuf; |
4288 } | |
4289 } | |
1918 | 4290 |
4291 /* restore curwin/curbuf and a few other things */ | |
4292 aucmd_restbuf(&aco); | |
2646 | 4293 if (newbuf_to_wipe != NULL && buf_valid(newbuf_to_wipe)) |
4294 wipe_buffer(newbuf_to_wipe, FALSE); | |
42 | 4295 } |
4296 | |
3490 | 4297 /* |
4298 * When autocommands/'autochdir' option changed directory: go back. | |
4299 * Let the caller know what the resulting dir was first, in case it is | |
4300 * important. | |
4301 */ | |
4302 mch_dirname(resulting_dir, MAXPATHL); | |
4303 restore_start_dir(dirname_start); | |
4304 | |
42 | 4305 if (!buf_valid(newbuf)) |
4306 return NULL; | |
4307 if (failed) | |
4308 { | |
3490 | 4309 wipe_dummy_buffer(newbuf, dirname_start); |
42 | 4310 return NULL; |
4311 } | |
4312 return newbuf; | |
4313 } | |
4314 | |
4315 /* | |
3490 | 4316 * Wipe out the dummy buffer that load_dummy_buffer() created. Restores |
4317 * directory to "dirname_start" prior to returning, if autocmds or the | |
4318 * 'autochdir' option have changed it. | |
42 | 4319 */ |
4320 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4321 wipe_dummy_buffer(buf_T *buf, char_u *dirname_start) |
42 | 4322 { |
4323 if (curbuf != buf) /* safety check */ | |
857 | 4324 { |
4325 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
4326 cleanup_T cs; | |
4327 | |
4328 /* Reset the error/interrupt/exception state here so that aborting() | |
4329 * returns FALSE when wiping out the buffer. Otherwise it doesn't | |
4330 * work when got_int is set. */ | |
4331 enter_cleanup(&cs); | |
4332 #endif | |
4333 | |
42 | 4334 wipe_buffer(buf, FALSE); |
857 | 4335 |
4336 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
4337 /* Restore the error/interrupt/exception state if not discarded by a | |
4338 * new aborting error, interrupt, or uncaught exception. */ | |
4339 leave_cleanup(&cs); | |
4340 #endif | |
3490 | 4341 /* When autocommands/'autochdir' option changed directory: go back. */ |
4342 restore_start_dir(dirname_start); | |
857 | 4343 } |
42 | 4344 } |
4345 | |
4346 /* | |
3490 | 4347 * Unload the dummy buffer that load_dummy_buffer() created. Restores |
4348 * directory to "dirname_start" prior to returning, if autocmds or the | |
4349 * 'autochdir' option have changed it. | |
42 | 4350 */ |
4351 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4352 unload_dummy_buffer(buf_T *buf, char_u *dirname_start) |
42 | 4353 { |
4354 if (curbuf != buf) /* safety check */ | |
3490 | 4355 { |
3365 | 4356 close_buffer(NULL, buf, DOBUF_UNLOAD, FALSE); |
3490 | 4357 |
4358 /* When autocommands/'autochdir' option changed directory: go back. */ | |
4359 restore_start_dir(dirname_start); | |
4360 } | |
42 | 4361 } |
4362 | |
170 | 4363 #if defined(FEAT_EVAL) || defined(PROTO) |
4364 /* | |
4365 * Add each quickfix error to list "list" as a dictionary. | |
4366 */ | |
4367 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4368 get_errorlist(win_T *wp, list_T *list) |
170 | 4369 { |
644 | 4370 qf_info_T *qi = &ql_info; |
230 | 4371 dict_T *dict; |
4372 char_u buf[2]; | |
4373 qfline_T *qfp; | |
4374 int i; | |
1065 | 4375 int bufnum; |
170 | 4376 |
647 | 4377 if (wp != NULL) |
4378 { | |
4379 qi = GET_LOC_LIST(wp); | |
4380 if (qi == NULL) | |
4381 return FAIL; | |
4382 } | |
4383 | |
644 | 4384 if (qi->qf_curlist >= qi->qf_listcount |
712 | 4385 || qi->qf_lists[qi->qf_curlist].qf_count == 0) |
170 | 4386 return FAIL; |
4387 | |
644 | 4388 qfp = qi->qf_lists[qi->qf_curlist].qf_start; |
4389 for (i = 1; !got_int && i <= qi->qf_lists[qi->qf_curlist].qf_count; ++i) | |
170 | 4390 { |
1065 | 4391 /* Handle entries with a non-existing buffer number. */ |
4392 bufnum = qfp->qf_fnum; | |
4393 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL)) | |
4394 bufnum = 0; | |
4395 | |
170 | 4396 if ((dict = dict_alloc()) == NULL) |
4397 return FAIL; | |
4398 if (list_append_dict(list, dict) == FAIL) | |
4399 return FAIL; | |
4400 | |
4401 buf[0] = qfp->qf_type; | |
4402 buf[1] = NUL; | |
1065 | 4403 if ( dict_add_nr_str(dict, "bufnr", (long)bufnum, NULL) == FAIL |
170 | 4404 || dict_add_nr_str(dict, "lnum", (long)qfp->qf_lnum, NULL) == FAIL |
4405 || dict_add_nr_str(dict, "col", (long)qfp->qf_col, NULL) == FAIL | |
4406 || dict_add_nr_str(dict, "vcol", (long)qfp->qf_viscol, NULL) == FAIL | |
4407 || dict_add_nr_str(dict, "nr", (long)qfp->qf_nr, NULL) == FAIL | |
960 | 4408 || dict_add_nr_str(dict, "pattern", 0L, |
4409 qfp->qf_pattern == NULL ? (char_u *)"" : qfp->qf_pattern) == FAIL | |
4410 || dict_add_nr_str(dict, "text", 0L, | |
4411 qfp->qf_text == NULL ? (char_u *)"" : qfp->qf_text) == FAIL | |
170 | 4412 || dict_add_nr_str(dict, "type", 0L, buf) == FAIL |
4413 || dict_add_nr_str(dict, "valid", (long)qfp->qf_valid, NULL) == FAIL) | |
4414 return FAIL; | |
4415 | |
4416 qfp = qfp->qf_next; | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
4417 if (qfp == NULL) |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
4418 break; |
170 | 4419 } |
4420 return OK; | |
4421 } | |
230 | 4422 |
4423 /* | |
4424 * Populate the quickfix list with the items supplied in the list | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4425 * of dictionaries. "title" will be copied to w:quickfix_title. |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4426 * "action" is 'a' for add, 'r' for replace. Otherwise create a new list. |
230 | 4427 */ |
4428 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4429 set_errorlist( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4430 win_T *wp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4431 list_T *list, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4432 int action, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4433 char_u *title) |
230 | 4434 { |
4435 listitem_T *li; | |
4436 dict_T *d; | |
4437 char_u *filename, *pattern, *text, *type; | |
1065 | 4438 int bufnum; |
230 | 4439 long lnum; |
4440 int col, nr; | |
4441 int vcol; | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4442 #ifdef FEAT_WINDOWS |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4443 qfline_T *old_last = NULL; |
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4444 #endif |
230 | 4445 int valid, status; |
4446 int retval = OK; | |
644 | 4447 qf_info_T *qi = &ql_info; |
1065 | 4448 int did_bufnr_emsg = FALSE; |
644 | 4449 |
647 | 4450 if (wp != NULL) |
4451 { | |
648 | 4452 qi = ll_get_or_alloc_list(wp); |
647 | 4453 if (qi == NULL) |
4454 return FAIL; | |
4455 } | |
4456 | |
644 | 4457 if (action == ' ' || qi->qf_curlist == qi->qf_listcount) |
277 | 4458 /* make place for a new list */ |
3965 | 4459 qf_new_list(qi, title); |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
4460 #ifdef FEAT_WINDOWS |
644 | 4461 else if (action == 'a' && qi->qf_lists[qi->qf_curlist].qf_count > 0) |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
4462 /* Adding to existing list, use last entry. */ |
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
4463 old_last = qi->qf_lists[qi->qf_curlist].qf_last; |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4464 #endif |
277 | 4465 else if (action == 'r') |
6079 | 4466 { |
644 | 4467 qf_free(qi, qi->qf_curlist); |
6079 | 4468 qf_store_title(qi, title); |
4469 } | |
230 | 4470 |
4471 for (li = list->lv_first; li != NULL; li = li->li_next) | |
4472 { | |
4473 if (li->li_tv.v_type != VAR_DICT) | |
4474 continue; /* Skip non-dict items */ | |
4475 | |
4476 d = li->li_tv.vval.v_dict; | |
4477 if (d == NULL) | |
4478 continue; | |
4479 | |
659 | 4480 filename = get_dict_string(d, (char_u *)"filename", TRUE); |
9389
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4481 bufnum = (int)get_dict_number(d, (char_u *)"bufnr"); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4482 lnum = (int)get_dict_number(d, (char_u *)"lnum"); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4483 col = (int)get_dict_number(d, (char_u *)"col"); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4484 vcol = (int)get_dict_number(d, (char_u *)"vcol"); |
32e34e574716
commit https://github.com/vim/vim/commit/22fcfad29276bd5f317faf516637dcd491b96a12
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
4485 nr = (int)get_dict_number(d, (char_u *)"nr"); |
659 | 4486 type = get_dict_string(d, (char_u *)"type", TRUE); |
4487 pattern = get_dict_string(d, (char_u *)"pattern", TRUE); | |
4488 text = get_dict_string(d, (char_u *)"text", TRUE); | |
230 | 4489 if (text == NULL) |
4490 text = vim_strsave((char_u *)""); | |
4491 | |
4492 valid = TRUE; | |
1065 | 4493 if ((filename == NULL && bufnum == 0) || (lnum == 0 && pattern == NULL)) |
230 | 4494 valid = FALSE; |
4495 | |
1065 | 4496 /* Mark entries with non-existing buffer number as not valid. Give the |
4497 * error message only once. */ | |
4498 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL)) | |
4499 { | |
4500 if (!did_bufnr_emsg) | |
4501 { | |
4502 did_bufnr_emsg = TRUE; | |
4503 EMSGN(_("E92: Buffer %ld not found"), bufnum); | |
4504 } | |
4505 valid = FALSE; | |
4506 bufnum = 0; | |
4507 } | |
4508 | |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
4509 status = qf_add_entry(qi, |
230 | 4510 NULL, /* dir */ |
4511 filename, | |
1065 | 4512 bufnum, |
230 | 4513 text, |
4514 lnum, | |
4515 col, | |
4516 vcol, /* vis_col */ | |
4517 pattern, /* search pattern */ | |
4518 nr, | |
4519 type == NULL ? NUL : *type, | |
4520 valid); | |
4521 | |
4522 vim_free(filename); | |
4523 vim_free(pattern); | |
4524 vim_free(text); | |
4525 vim_free(type); | |
4526 | |
4527 if (status == FAIL) | |
4528 { | |
4529 retval = FAIL; | |
4530 break; | |
4531 } | |
4532 } | |
4533 | |
2146
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
4534 if (qi->qf_lists[qi->qf_curlist].qf_index == 0) |
2795 | 4535 /* no valid entry */ |
2146
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
4536 qi->qf_lists[qi->qf_curlist].qf_nonevalid = TRUE; |
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
4537 else |
c17a42da3920
updated for version 7.2.428
Bram Moolenaar <bram@zimbu.org>
parents:
2047
diff
changeset
|
4538 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
4539 if (action != 'a') { |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
4540 qi->qf_lists[qi->qf_curlist].qf_ptr = |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
4541 qi->qf_lists[qi->qf_curlist].qf_start; |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
4542 if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
4543 qi->qf_lists[qi->qf_curlist].qf_index = 1; |
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
4544 } |
230 | 4545 |
4546 #ifdef FEAT_WINDOWS | |
8932
25c2031e9f9f
commit https://github.com/vim/vim/commit/c1808d5822ed9534ef7f0fe509b15bee92a5cc28
Christian Brabandt <cb@256bit.org>
parents:
8751
diff
changeset
|
4547 /* Don't update the cursor in quickfix window when appending entries */ |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4548 qf_update_buffer(qi, old_last); |
230 | 4549 #endif |
4550 | |
4551 return retval; | |
4552 } | |
170 | 4553 #endif |
4554 | |
42 | 4555 /* |
41 | 4556 * ":[range]cbuffer [bufnr]" command. |
657 | 4557 * ":[range]caddbuffer [bufnr]" command. |
798 | 4558 * ":[range]cgetbuffer [bufnr]" command. |
644 | 4559 * ":[range]lbuffer [bufnr]" command. |
657 | 4560 * ":[range]laddbuffer [bufnr]" command. |
798 | 4561 * ":[range]lgetbuffer [bufnr]" command. |
41 | 4562 */ |
4563 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4564 ex_cbuffer(exarg_T *eap) |
41 | 4565 { |
4566 buf_T *buf = NULL; | |
644 | 4567 qf_info_T *qi = &ql_info; |
4568 | |
798 | 4569 if (eap->cmdidx == CMD_lbuffer || eap->cmdidx == CMD_lgetbuffer |
4570 || eap->cmdidx == CMD_laddbuffer) | |
644 | 4571 { |
4572 qi = ll_get_or_alloc_list(curwin); | |
4573 if (qi == NULL) | |
4574 return; | |
4575 } | |
41 | 4576 |
4577 if (*eap->arg == NUL) | |
4578 buf = curbuf; | |
4579 else if (*skipwhite(skipdigits(eap->arg)) == NUL) | |
4580 buf = buflist_findnr(atoi((char *)eap->arg)); | |
4581 if (buf == NULL) | |
4582 EMSG(_(e_invarg)); | |
4583 else if (buf->b_ml.ml_mfp == NULL) | |
4584 EMSG(_("E681: Buffer is not loaded")); | |
4585 else | |
4586 { | |
4587 if (eap->addr_count == 0) | |
4588 { | |
4589 eap->line1 = 1; | |
4590 eap->line2 = buf->b_ml.ml_line_count; | |
4591 } | |
4592 if (eap->line1 < 1 || eap->line1 > buf->b_ml.ml_line_count | |
4593 || eap->line2 < 1 || eap->line2 > buf->b_ml.ml_line_count) | |
4594 EMSG(_(e_invrange)); | |
4595 else | |
661 | 4596 { |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4597 char_u *qf_title = *eap->cmdlinep; |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4598 |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4599 if (buf->b_sfname) |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4600 { |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4601 vim_snprintf((char *)IObuff, IOSIZE, "%s (%s)", |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4602 (char *)qf_title, (char *)buf->b_sfname); |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4603 qf_title = IObuff; |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4604 } |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4605 |
798 | 4606 if (qf_init_ext(qi, NULL, buf, NULL, p_efm, |
4607 (eap->cmdidx != CMD_caddbuffer | |
4608 && eap->cmdidx != CMD_laddbuffer), | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4609 eap->line1, eap->line2, |
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4610 qf_title) > 0 |
798 | 4611 && (eap->cmdidx == CMD_cbuffer |
4612 || eap->cmdidx == CMD_lbuffer)) | |
661 | 4613 qf_jump(qi, 0, 0, eap->forceit); /* display first error */ |
4614 } | |
41 | 4615 } |
4616 } | |
4617 | |
532 | 4618 #if defined(FEAT_EVAL) || defined(PROTO) |
41 | 4619 /* |
798 | 4620 * ":cexpr {expr}", ":cgetexpr {expr}", ":caddexpr {expr}" command. |
4621 * ":lexpr {expr}", ":lgetexpr {expr}", ":laddexpr {expr}" command. | |
446 | 4622 */ |
4623 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4624 ex_cexpr(exarg_T *eap) |
446 | 4625 { |
4626 typval_T *tv; | |
644 | 4627 qf_info_T *qi = &ql_info; |
4628 | |
798 | 4629 if (eap->cmdidx == CMD_lexpr || eap->cmdidx == CMD_lgetexpr |
4630 || eap->cmdidx == CMD_laddexpr) | |
644 | 4631 { |
4632 qi = ll_get_or_alloc_list(curwin); | |
4633 if (qi == NULL) | |
4634 return; | |
4635 } | |
446 | 4636 |
625 | 4637 /* Evaluate the expression. When the result is a string or a list we can |
4638 * use it to fill the errorlist. */ | |
446 | 4639 tv = eval_expr(eap->arg, NULL); |
625 | 4640 if (tv != NULL) |
4641 { | |
4642 if ((tv->v_type == VAR_STRING && tv->vval.v_string != NULL) | |
4643 || (tv->v_type == VAR_LIST && tv->vval.v_list != NULL)) | |
4644 { | |
7701
075810b0cb6c
commit https://github.com/vim/vim/commit/d6357e8f93c50f984ffd69c3a0d247d8603f86c3
Christian Brabandt <cb@256bit.org>
parents:
7662
diff
changeset
|
4645 if (qf_init_ext(qi, NULL, NULL, tv, p_efm, |
798 | 4646 (eap->cmdidx != CMD_caddexpr |
4647 && eap->cmdidx != CMD_laddexpr), | |
2411
68e394361ca3
Add "q" item for 'statusline'. Add w:quickfix_title. (Lech Lorens)
Bram Moolenaar <bram@vim.org>
parents:
2296
diff
changeset
|
4648 (linenr_T)0, (linenr_T)0, *eap->cmdlinep) > 0 |
798 | 4649 && (eap->cmdidx == CMD_cexpr |
4650 || eap->cmdidx == CMD_lexpr)) | |
659 | 4651 qf_jump(qi, 0, 0, eap->forceit); /* display first error */ |
625 | 4652 } |
4653 else | |
626 | 4654 EMSG(_("E777: String or List expected")); |
625 | 4655 free_tv(tv); |
4656 } | |
446 | 4657 } |
532 | 4658 #endif |
446 | 4659 |
4660 /* | |
7 | 4661 * ":helpgrep {pattern}" |
4662 */ | |
4663 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4664 ex_helpgrep(exarg_T *eap) |
7 | 4665 { |
4666 regmatch_T regmatch; | |
4667 char_u *save_cpo; | |
4668 char_u *p; | |
4669 int fcount; | |
4670 char_u **fnames; | |
4671 FILE *fd; | |
4672 int fi; | |
4673 long lnum; | |
9 | 4674 #ifdef FEAT_MULTI_LANG |
4675 char_u *lang; | |
4676 #endif | |
644 | 4677 qf_info_T *qi = &ql_info; |
659 | 4678 int new_qi = FALSE; |
4679 win_T *wp; | |
3269 | 4680 #ifdef FEAT_AUTOCMD |
4681 char_u *au_name = NULL; | |
4682 #endif | |
7 | 4683 |
9 | 4684 #ifdef FEAT_MULTI_LANG |
4685 /* Check for a specified language */ | |
4686 lang = check_help_lang(eap->arg); | |
4687 #endif | |
4688 | |
3269 | 4689 #ifdef FEAT_AUTOCMD |
4690 switch (eap->cmdidx) | |
4691 { | |
4692 case CMD_helpgrep: au_name = (char_u *)"helpgrep"; break; | |
4693 case CMD_lhelpgrep: au_name = (char_u *)"lhelpgrep"; break; | |
4694 default: break; | |
4695 } | |
4696 if (au_name != NULL) | |
4697 { | |
4698 apply_autocmds(EVENT_QUICKFIXCMDPRE, au_name, | |
4699 curbuf->b_fname, TRUE, curbuf); | |
4700 if (did_throw || force_abort) | |
4701 return; | |
4702 } | |
4703 #endif | |
4704 | |
4705 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */ | |
4706 save_cpo = p_cpo; | |
4707 p_cpo = empty_option; | |
4708 | |
659 | 4709 if (eap->cmdidx == CMD_lhelpgrep) |
4710 { | |
4711 /* Find an existing help window */ | |
4712 FOR_ALL_WINDOWS(wp) | |
4713 if (wp->w_buffer != NULL && wp->w_buffer->b_help) | |
4714 break; | |
4715 | |
4716 if (wp == NULL) /* Help window not found */ | |
4717 qi = NULL; | |
4718 else | |
4719 qi = wp->w_llist; | |
4720 | |
4721 if (qi == NULL) | |
4722 { | |
4723 /* Allocate a new location list for help text matches */ | |
4724 if ((qi = ll_new_list()) == NULL) | |
4725 return; | |
4726 new_qi = TRUE; | |
4727 } | |
4728 } | |
4729 | |
7 | 4730 regmatch.regprog = vim_regcomp(eap->arg, RE_MAGIC + RE_STRING); |
4731 regmatch.rm_ic = FALSE; | |
4732 if (regmatch.regprog != NULL) | |
4733 { | |
3257 | 4734 #ifdef FEAT_MBYTE |
4735 vimconv_T vc; | |
4736 | |
4737 /* Help files are in utf-8 or latin1, convert lines when 'encoding' | |
4738 * differs. */ | |
4739 vc.vc_type = CONV_NONE; | |
4740 if (!enc_utf8) | |
4741 convert_setup(&vc, (char_u *)"utf-8", p_enc); | |
4742 #endif | |
4743 | |
7 | 4744 /* create a new quickfix list */ |
3965 | 4745 qf_new_list(qi, *eap->cmdlinep); |
7 | 4746 |
4747 /* Go through all directories in 'runtimepath' */ | |
4748 p = p_rtp; | |
4749 while (*p != NUL && !got_int) | |
4750 { | |
4751 copy_option_part(&p, NameBuff, MAXPATHL, ","); | |
4752 | |
4753 /* Find all "*.txt" and "*.??x" files in the "doc" directory. */ | |
4754 add_pathsep(NameBuff); | |
4755 STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)"); | |
4756 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
4757 &fnames, EW_FILE|EW_SILENT) == OK | |
4758 && fcount > 0) | |
4759 { | |
4760 for (fi = 0; fi < fcount && !got_int; ++fi) | |
4761 { | |
9 | 4762 #ifdef FEAT_MULTI_LANG |
4763 /* Skip files for a different language. */ | |
4764 if (lang != NULL | |
4765 && STRNICMP(lang, fnames[fi] | |
4766 + STRLEN(fnames[fi]) - 3, 2) != 0 | |
4767 && !(STRNICMP(lang, "en", 2) == 0 | |
4768 && STRNICMP("txt", fnames[fi] | |
4769 + STRLEN(fnames[fi]) - 3, 3) == 0)) | |
4770 continue; | |
4771 #endif | |
531 | 4772 fd = mch_fopen((char *)fnames[fi], "r"); |
7 | 4773 if (fd != NULL) |
4774 { | |
4775 lnum = 1; | |
4776 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
4777 { | |
3257 | 4778 char_u *line = IObuff; |
4779 #ifdef FEAT_MBYTE | |
4780 /* Convert a line if 'encoding' is not utf-8 and | |
4781 * the line contains a non-ASCII character. */ | |
4782 if (vc.vc_type != CONV_NONE | |
4783 && has_non_ascii(IObuff)) { | |
4784 line = string_convert(&vc, IObuff, NULL); | |
4785 if (line == NULL) | |
4786 line = IObuff; | |
4787 } | |
4788 #endif | |
4789 | |
4790 if (vim_regexec(®match, line, (colnr_T)0)) | |
7 | 4791 { |
3257 | 4792 int l = (int)STRLEN(line); |
7 | 4793 |
4794 /* remove trailing CR, LF, spaces, etc. */ | |
3257 | 4795 while (l > 0 && line[l - 1] <= ' ') |
4796 line[--l] = NUL; | |
7 | 4797 |
9195
543f068f3706
commit https://github.com/vim/vim/commit/83e6d7ac6a1c2a0cb5ee6c8420a5dc792f1d5ffa
Christian Brabandt <cb@256bit.org>
parents:
9175
diff
changeset
|
4798 if (qf_add_entry(qi, |
7 | 4799 NULL, /* dir */ |
4800 fnames[fi], | |
1065 | 4801 0, |
3257 | 4802 line, |
7 | 4803 lnum, |
3257 | 4804 (int)(regmatch.startp[0] - line) |
42 | 4805 + 1, /* col */ |
170 | 4806 FALSE, /* vis_col */ |
230 | 4807 NULL, /* search pattern */ |
7 | 4808 0, /* nr */ |
4809 1, /* type */ | |
4810 TRUE /* valid */ | |
4811 ) == FAIL) | |
4812 { | |
4813 got_int = TRUE; | |
3257 | 4814 #ifdef FEAT_MBYTE |
4815 if (line != IObuff) | |
4816 vim_free(line); | |
4817 #endif | |
7 | 4818 break; |
4819 } | |
4820 } | |
3257 | 4821 #ifdef FEAT_MBYTE |
4822 if (line != IObuff) | |
4823 vim_free(line); | |
4824 #endif | |
7 | 4825 ++lnum; |
4826 line_breakcheck(); | |
4827 } | |
4828 fclose(fd); | |
4829 } | |
4830 } | |
4831 FreeWild(fcount, fnames); | |
4832 } | |
4833 } | |
3257 | 4834 |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4371
diff
changeset
|
4835 vim_regfree(regmatch.regprog); |
3257 | 4836 #ifdef FEAT_MBYTE |
4837 if (vc.vc_type != CONV_NONE) | |
4838 convert_setup(&vc, NULL, NULL); | |
4839 #endif | |
7 | 4840 |
644 | 4841 qi->qf_lists[qi->qf_curlist].qf_nonevalid = FALSE; |
4842 qi->qf_lists[qi->qf_curlist].qf_ptr = | |
4843 qi->qf_lists[qi->qf_curlist].qf_start; | |
4844 qi->qf_lists[qi->qf_curlist].qf_index = 1; | |
7 | 4845 } |
4846 | |
1672 | 4847 if (p_cpo == empty_option) |
4848 p_cpo = save_cpo; | |
4849 else | |
4850 /* Darn, some plugin changed the value. */ | |
4851 free_string_option(save_cpo); | |
7 | 4852 |
4853 #ifdef FEAT_WINDOWS | |
9175
d415c079f84e
commit https://github.com/vim/vim/commit/864293abb72d62604d8d6b458addfb43c14230c3
Christian Brabandt <cb@256bit.org>
parents:
9114
diff
changeset
|
4854 qf_update_buffer(qi, NULL); |
7 | 4855 #endif |
4856 | |
3269 | 4857 #ifdef FEAT_AUTOCMD |
4858 if (au_name != NULL) | |
4859 { | |
4860 apply_autocmds(EVENT_QUICKFIXCMDPOST, au_name, | |
4861 curbuf->b_fname, TRUE, curbuf); | |
4862 if (!new_qi && qi != &ql_info && qf_find_buf(qi) == NULL) | |
4863 /* autocommands made "qi" invalid */ | |
4864 return; | |
4865 } | |
4866 #endif | |
4867 | |
7 | 4868 /* Jump to first match. */ |
644 | 4869 if (qi->qf_lists[qi->qf_curlist].qf_count > 0) |
659 | 4870 qf_jump(qi, 0, 0, FALSE); |
9 | 4871 else |
4872 EMSG2(_(e_nomatch2), eap->arg); | |
659 | 4873 |
4874 if (eap->cmdidx == CMD_lhelpgrep) | |
4875 { | |
4876 /* If the help window is not opened or if it already points to the | |
661 | 4877 * correct location list, then free the new location list. */ |
659 | 4878 if (!curwin->w_buffer->b_help || curwin->w_llist == qi) |
4879 { | |
4880 if (new_qi) | |
4881 ll_free_all(&qi); | |
4882 } | |
4883 else if (curwin->w_llist == NULL) | |
4884 curwin->w_llist = qi; | |
4885 } | |
7 | 4886 } |
4887 | |
4888 #endif /* FEAT_QUICKFIX */ |