Blame


1 2b2d2872 2021-06-20 op /*
2 2b2d2872 2021-06-20 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 2b2d2872 2021-06-20 op *
4 2b2d2872 2021-06-20 op * Permission to use, copy, modify, and distribute this software for any
5 2b2d2872 2021-06-20 op * purpose with or without fee is hereby granted, provided that the above
6 2b2d2872 2021-06-20 op * copyright notice and this permission notice appear in all copies.
7 2b2d2872 2021-06-20 op *
8 2b2d2872 2021-06-20 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 2b2d2872 2021-06-20 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 2b2d2872 2021-06-20 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 2b2d2872 2021-06-20 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 2b2d2872 2021-06-20 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 2b2d2872 2021-06-20 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 2b2d2872 2021-06-20 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 2b2d2872 2021-06-20 op */
16 2b2d2872 2021-06-20 op
17 61251035 2021-06-26 op #include <limits.h>
18 2b2d2872 2021-06-20 op #include <stdlib.h>
19 61251035 2021-06-26 op #include <string.h>
20 2b2d2872 2021-06-20 op
21 b1e1e41a 2021-07-14 op #include "compl.h"
22 e5a2797f 2021-07-13 op #include "defaults.h"
23 450a89f7 2021-07-12 op #include "minibuffer.h"
24 2b2d2872 2021-06-20 op #include "telescope.h"
25 d1a0f2a3 2021-07-12 op #include "ui.h"
26 5caf7d67 2021-07-12 op #include "utf8.h"
27 2b2d2872 2021-06-20 op
28 ca231710 2021-07-15 op #define GUARD_RECURSIVE_MINIBUFFER() \
29 ca231710 2021-07-15 op do { \
30 ca231710 2021-07-15 op if (in_minibuffer) { \
31 ca231710 2021-07-15 op message("enable-recursive-minibuffers " \
32 ca231710 2021-07-15 op "is not yet available."); \
33 ca231710 2021-07-15 op return; \
34 ca231710 2021-07-15 op } \
35 ca231710 2021-07-15 op } while(0)
36 ca231710 2021-07-15 op
37 c4c82003 2021-07-01 op /* return 1 if moved, 0 otherwise */
38 c4c82003 2021-07-01 op static inline int
39 c4c82003 2021-07-01 op forward_line(struct buffer *buffer, int n)
40 2b2d2872 2021-06-20 op {
41 c4c82003 2021-07-01 op struct vline *vl;
42 c4c82003 2021-07-01 op int did;
43 2b2d2872 2021-06-20 op
44 c4c82003 2021-07-01 op if (buffer->current_line == NULL)
45 c4c82003 2021-07-01 op return 0;
46 963c680c 2021-07-05 op vl = buffer->current_line;
47 2b2d2872 2021-06-20 op
48 c4c82003 2021-07-01 op did = 0;
49 c4c82003 2021-07-01 op while (n != 0) {
50 c4c82003 2021-07-01 op if (n > 0) {
51 963c680c 2021-07-05 op vl = TAILQ_NEXT(vl, vlines);
52 c4c82003 2021-07-01 op if (vl == NULL)
53 c4c82003 2021-07-01 op return did;
54 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
55 963c680c 2021-07-05 op continue;
56 c4c82003 2021-07-01 op buffer->current_line = vl;
57 c4c82003 2021-07-01 op n--;
58 c4c82003 2021-07-01 op } else {
59 963c680c 2021-07-05 op vl = TAILQ_PREV(vl, vhead, vlines);
60 c4c82003 2021-07-01 op if (vl == NULL)
61 c4c82003 2021-07-01 op return did;
62 963c680c 2021-07-05 op if (vl->parent->flags & L_HIDDEN)
63 963c680c 2021-07-05 op continue;
64 6e6c6afb 2021-07-14 op if (buffer->current_line == buffer->top_line) {
65 6e6c6afb 2021-07-14 op buffer->line_off--;
66 c4c82003 2021-07-01 op buffer->top_line = vl;
67 6e6c6afb 2021-07-14 op }
68 c4c82003 2021-07-01 op buffer->current_line = vl;
69 c4c82003 2021-07-01 op n++;
70 c4c82003 2021-07-01 op }
71 c4c82003 2021-07-01 op
72 c4c82003 2021-07-01 op did = 1;
73 2b2d2872 2021-06-20 op }
74 2b2d2872 2021-06-20 op
75 c4c82003 2021-07-01 op return did;
76 2b2d2872 2021-06-20 op }
77 2b2d2872 2021-06-20 op
78 2b2d2872 2021-06-20 op void
79 c4c82003 2021-07-01 op cmd_previous_line(struct buffer *buffer)
80 2b2d2872 2021-06-20 op {
81 c4c82003 2021-07-01 op forward_line(buffer, -1);
82 c4c82003 2021-07-01 op }
83 2b2d2872 2021-06-20 op
84 c4c82003 2021-07-01 op void
85 c4c82003 2021-07-01 op cmd_next_line(struct buffer *buffer)
86 c4c82003 2021-07-01 op {
87 c4c82003 2021-07-01 op forward_line(buffer, +1);
88 2b2d2872 2021-06-20 op }
89 2b2d2872 2021-06-20 op
90 2b2d2872 2021-06-20 op void
91 2b2d2872 2021-06-20 op cmd_backward_char(struct buffer *buffer)
92 2b2d2872 2021-06-20 op {
93 2b2d2872 2021-06-20 op if (buffer->cpoff != 0)
94 2b2d2872 2021-06-20 op buffer->cpoff--;
95 2b2d2872 2021-06-20 op }
96 2b2d2872 2021-06-20 op
97 2b2d2872 2021-06-20 op void
98 2b2d2872 2021-06-20 op cmd_forward_char(struct buffer *buffer)
99 2b2d2872 2021-06-20 op {
100 2b2d2872 2021-06-20 op size_t len = 0;
101 2b2d2872 2021-06-20 op
102 2b2d2872 2021-06-20 op if (buffer->current_line->line != NULL)
103 2b2d2872 2021-06-20 op len = utf8_cplen(buffer->current_line->line);
104 2b2d2872 2021-06-20 op if (++buffer->cpoff > len)
105 2b2d2872 2021-06-20 op buffer->cpoff = len;
106 2b2d2872 2021-06-20 op }
107 2b2d2872 2021-06-20 op
108 2b2d2872 2021-06-20 op void
109 2b2d2872 2021-06-20 op cmd_backward_paragraph(struct buffer *buffer)
110 2b2d2872 2021-06-20 op {
111 2b2d2872 2021-06-20 op do {
112 c4c82003 2021-07-01 op if (!forward_line(buffer, -1)) {
113 2b2d2872 2021-06-20 op message("No previous paragraph");
114 2b2d2872 2021-06-20 op return;
115 2b2d2872 2021-06-20 op }
116 2b2d2872 2021-06-20 op } while (buffer->current_line->line != NULL ||
117 2b2d2872 2021-06-20 op buffer->current_line->parent->type != LINE_TEXT);
118 2b2d2872 2021-06-20 op }
119 2b2d2872 2021-06-20 op
120 2b2d2872 2021-06-20 op void
121 2b2d2872 2021-06-20 op cmd_forward_paragraph(struct buffer *buffer)
122 2b2d2872 2021-06-20 op {
123 2b2d2872 2021-06-20 op do {
124 c4c82003 2021-07-01 op if (!forward_line(buffer, +1)) {
125 2b2d2872 2021-06-20 op message("No next paragraph");
126 2b2d2872 2021-06-20 op return;
127 2b2d2872 2021-06-20 op }
128 2b2d2872 2021-06-20 op } while (buffer->current_line->line != NULL ||
129 2b2d2872 2021-06-20 op buffer->current_line->parent->type != LINE_TEXT);
130 2b2d2872 2021-06-20 op }
131 2b2d2872 2021-06-20 op
132 2b2d2872 2021-06-20 op void
133 2b2d2872 2021-06-20 op cmd_move_beginning_of_line(struct buffer *buffer)
134 2b2d2872 2021-06-20 op {
135 2b2d2872 2021-06-20 op buffer->cpoff = 0;
136 2b2d2872 2021-06-20 op }
137 2b2d2872 2021-06-20 op
138 2b2d2872 2021-06-20 op void
139 2b2d2872 2021-06-20 op cmd_move_end_of_line(struct buffer *buffer)
140 2b2d2872 2021-06-20 op {
141 2b2d2872 2021-06-20 op struct vline *vl;
142 2b2d2872 2021-06-20 op
143 2b2d2872 2021-06-20 op vl = buffer->current_line;
144 2b2d2872 2021-06-20 op if (vl->line == NULL)
145 2b2d2872 2021-06-20 op return;
146 2b2d2872 2021-06-20 op buffer->cpoff = utf8_cplen(vl->line);
147 2b2d2872 2021-06-20 op }
148 2b2d2872 2021-06-20 op
149 2b2d2872 2021-06-20 op void
150 2b2d2872 2021-06-20 op cmd_redraw(struct buffer *buffer)
151 2b2d2872 2021-06-20 op {
152 2b2d2872 2021-06-20 op ui_schedule_redraw();
153 2b2d2872 2021-06-20 op }
154 2b2d2872 2021-06-20 op
155 2b2d2872 2021-06-20 op void
156 2b2d2872 2021-06-20 op cmd_scroll_line_up(struct buffer *buffer)
157 2b2d2872 2021-06-20 op {
158 e39920a9 2021-07-07 op struct vline *vl;
159 e39920a9 2021-07-07 op
160 e39920a9 2021-07-07 op if ((vl = TAILQ_PREV(buffer->top_line, vhead, vlines))
161 e39920a9 2021-07-07 op == NULL)
162 2b2d2872 2021-06-20 op return;
163 2b2d2872 2021-06-20 op
164 e39920a9 2021-07-07 op forward_line(buffer, -1);
165 e39920a9 2021-07-07 op
166 e39920a9 2021-07-07 op buffer->top_line = vl;
167 2b2d2872 2021-06-20 op }
168 2b2d2872 2021-06-20 op
169 2b2d2872 2021-06-20 op void
170 2b2d2872 2021-06-20 op cmd_scroll_line_down(struct buffer *buffer)
171 2b2d2872 2021-06-20 op {
172 c4c82003 2021-07-01 op if (!forward_line(buffer, +1))
173 2b2d2872 2021-06-20 op return;
174 2b2d2872 2021-06-20 op
175 94ec38e8 2021-06-29 op buffer->top_line = TAILQ_NEXT(buffer->top_line, vlines);
176 2b2d2872 2021-06-20 op buffer->line_off++;
177 2b2d2872 2021-06-20 op }
178 2b2d2872 2021-06-20 op
179 2b2d2872 2021-06-20 op void
180 2b2d2872 2021-06-20 op cmd_scroll_up(struct buffer *buffer)
181 2b2d2872 2021-06-20 op {
182 64923c4b 2021-07-15 op struct vline *vl;
183 64923c4b 2021-07-15 op int i;
184 64923c4b 2021-07-15 op
185 64923c4b 2021-07-15 op for (i = 0; i < body_lines; ++i) {
186 64923c4b 2021-07-15 op vl = TAILQ_PREV(buffer->top_line, vhead, vlines);
187 64923c4b 2021-07-15 op if (vl == NULL)
188 64923c4b 2021-07-15 op break;
189 64923c4b 2021-07-15 op buffer->top_line = vl;
190 64923c4b 2021-07-15 op forward_line(buffer, -1);
191 64923c4b 2021-07-15 op }
192 2b2d2872 2021-06-20 op }
193 2b2d2872 2021-06-20 op
194 2b2d2872 2021-06-20 op void
195 2b2d2872 2021-06-20 op cmd_scroll_down(struct buffer *buffer)
196 2b2d2872 2021-06-20 op {
197 64923c4b 2021-07-15 op int i;
198 64923c4b 2021-07-15 op
199 64923c4b 2021-07-15 op for (i = 0; i < body_lines; ++i) {
200 64923c4b 2021-07-15 op if (!forward_line(buffer, +1))
201 64923c4b 2021-07-15 op break;
202 64923c4b 2021-07-15 op
203 64923c4b 2021-07-15 op buffer->top_line = TAILQ_NEXT(buffer->top_line,
204 64923c4b 2021-07-15 op vlines);
205 64923c4b 2021-07-15 op }
206 2b2d2872 2021-06-20 op }
207 2b2d2872 2021-06-20 op
208 2b2d2872 2021-06-20 op void
209 2b2d2872 2021-06-20 op cmd_beginning_of_buffer(struct buffer *buffer)
210 2b2d2872 2021-06-20 op {
211 2b2d2872 2021-06-20 op buffer->current_line = TAILQ_FIRST(&buffer->head);
212 c4c82003 2021-07-01 op buffer->cpoff = 0;
213 94ec38e8 2021-06-29 op buffer->top_line = buffer->current_line;
214 2b2d2872 2021-06-20 op buffer->line_off = 0;
215 2b2d2872 2021-06-20 op }
216 2b2d2872 2021-06-20 op
217 2b2d2872 2021-06-20 op void
218 2b2d2872 2021-06-20 op cmd_end_of_buffer(struct buffer *buffer)
219 2b2d2872 2021-06-20 op {
220 2b2d2872 2021-06-20 op buffer->current_line = TAILQ_LAST(&buffer->head, vhead);
221 2b2d2872 2021-06-20 op buffer->cpoff = body_cols;
222 2b2d2872 2021-06-20 op }
223 2b2d2872 2021-06-20 op
224 2b2d2872 2021-06-20 op void
225 2b2d2872 2021-06-20 op cmd_kill_telescope(struct buffer *buffer)
226 2b2d2872 2021-06-20 op {
227 2b2d2872 2021-06-20 op save_session();
228 2b2d2872 2021-06-20 op event_loopbreak();
229 2b2d2872 2021-06-20 op }
230 2b2d2872 2021-06-20 op
231 2b2d2872 2021-06-20 op void
232 2b2d2872 2021-06-20 op cmd_push_button(struct buffer *buffer)
233 2b2d2872 2021-06-20 op {
234 2b2d2872 2021-06-20 op struct vline *vl;
235 963c680c 2021-07-05 op struct line *l;
236 2b2d2872 2021-06-20 op
237 2b2d2872 2021-06-20 op vl = buffer->current_line;
238 963c680c 2021-07-05 op switch (vl->parent->type) {
239 963c680c 2021-07-05 op case LINE_LINK:
240 83dce83d 2021-07-17 op load_url_in_tab(current_tab, vl->parent->alt);
241 963c680c 2021-07-05 op break;
242 963c680c 2021-07-05 op case LINE_PRE_START:
243 963c680c 2021-07-05 op l = TAILQ_NEXT(vl->parent, lines);
244 963c680c 2021-07-05 op for (; l != NULL; l = TAILQ_NEXT(l, lines)) {
245 963c680c 2021-07-05 op if (l->type == LINE_PRE_END)
246 963c680c 2021-07-05 op break;
247 963c680c 2021-07-05 op l->flags ^= L_HIDDEN;
248 6e6c6afb 2021-07-14 op if (l->flags & L_HIDDEN)
249 6e6c6afb 2021-07-14 op buffer->line_max--;
250 6e6c6afb 2021-07-14 op else
251 6e6c6afb 2021-07-14 op buffer->line_max++;
252 963c680c 2021-07-05 op }
253 963c680c 2021-07-05 op break;
254 963c680c 2021-07-05 op default:
255 963c680c 2021-07-05 op break;
256 963c680c 2021-07-05 op }
257 2b2d2872 2021-06-20 op }
258 2b2d2872 2021-06-20 op
259 2b2d2872 2021-06-20 op void
260 2b2d2872 2021-06-20 op cmd_push_button_new_tab(struct buffer *buffer)
261 2b2d2872 2021-06-20 op {
262 2b2d2872 2021-06-20 op struct vline *vl;
263 2b2d2872 2021-06-20 op
264 2b2d2872 2021-06-20 op vl = buffer->current_line;
265 2b2d2872 2021-06-20 op if (vl->parent->type != LINE_LINK)
266 2b2d2872 2021-06-20 op return;
267 2b2d2872 2021-06-20 op
268 fbadd395 2021-07-16 op new_tab(vl->parent->alt);
269 2b2d2872 2021-06-20 op }
270 2b2d2872 2021-06-20 op
271 2b2d2872 2021-06-20 op void
272 2b2d2872 2021-06-20 op cmd_previous_button(struct buffer *buffer)
273 2b2d2872 2021-06-20 op {
274 5d0feb4b 2021-06-23 op struct excursion place;
275 5d0feb4b 2021-06-23 op
276 5d0feb4b 2021-06-23 op save_excursion(&place, buffer);
277 5d0feb4b 2021-06-23 op
278 2b2d2872 2021-06-20 op do {
279 c4c82003 2021-07-01 op if (!forward_line(buffer, -1)) {
280 5d0feb4b 2021-06-23 op restore_excursion(&place, buffer);
281 2b2d2872 2021-06-20 op message("No previous link");
282 2b2d2872 2021-06-20 op return;
283 2b2d2872 2021-06-20 op }
284 2b2d2872 2021-06-20 op } while (buffer->current_line->parent->type != LINE_LINK);
285 2b2d2872 2021-06-20 op }
286 2b2d2872 2021-06-20 op
287 2b2d2872 2021-06-20 op void
288 2b2d2872 2021-06-20 op cmd_next_button(struct buffer *buffer)
289 2b2d2872 2021-06-20 op {
290 5d0feb4b 2021-06-23 op struct excursion place;
291 5d0feb4b 2021-06-23 op
292 5d0feb4b 2021-06-23 op save_excursion(&place, buffer);
293 5d0feb4b 2021-06-23 op
294 2b2d2872 2021-06-20 op do {
295 c4c82003 2021-07-01 op if (!forward_line(buffer, +1)){
296 5d0feb4b 2021-06-23 op restore_excursion(&place, buffer);
297 2b2d2872 2021-06-20 op message("No next link");
298 2b2d2872 2021-06-20 op return;
299 2b2d2872 2021-06-20 op }
300 2b2d2872 2021-06-20 op } while (buffer->current_line->parent->type != LINE_LINK);
301 1c412d48 2021-06-25 op }
302 1c412d48 2021-06-25 op
303 1c412d48 2021-06-25 op static inline int
304 1c412d48 2021-06-25 op is_heading(const struct line *l)
305 1c412d48 2021-06-25 op {
306 1c412d48 2021-06-25 op return l->type == LINE_TITLE_1 ||
307 1c412d48 2021-06-25 op l->type == LINE_TITLE_2 ||
308 1c412d48 2021-06-25 op l->type == LINE_TITLE_3;
309 1c412d48 2021-06-25 op }
310 1c412d48 2021-06-25 op
311 1c412d48 2021-06-25 op void
312 1c412d48 2021-06-25 op cmd_previous_heading(struct buffer *buffer)
313 1c412d48 2021-06-25 op {
314 1c412d48 2021-06-25 op struct excursion place;
315 1c412d48 2021-06-25 op
316 1c412d48 2021-06-25 op save_excursion(&place, buffer);
317 1c412d48 2021-06-25 op
318 1c412d48 2021-06-25 op do {
319 c4c82003 2021-07-01 op if (!forward_line(buffer, -1)) {
320 1c412d48 2021-06-25 op restore_excursion(&place, buffer);
321 1c412d48 2021-06-25 op message("No previous heading");
322 1c412d48 2021-06-25 op return;
323 1c412d48 2021-06-25 op }
324 1c412d48 2021-06-25 op } while (!is_heading(buffer->current_line->parent));
325 2b2d2872 2021-06-20 op }
326 2b2d2872 2021-06-20 op
327 2b2d2872 2021-06-20 op void
328 1c412d48 2021-06-25 op cmd_next_heading(struct buffer *buffer)
329 1c412d48 2021-06-25 op {
330 1c412d48 2021-06-25 op struct excursion place;
331 1c412d48 2021-06-25 op
332 1c412d48 2021-06-25 op save_excursion(&place, buffer);
333 1c412d48 2021-06-25 op
334 1c412d48 2021-06-25 op do {
335 c4c82003 2021-07-01 op if (!forward_line(buffer, +1)) {
336 1c412d48 2021-06-25 op restore_excursion(&place, buffer);
337 1c412d48 2021-06-25 op message("No next heading");
338 1c412d48 2021-06-25 op return;
339 1c412d48 2021-06-25 op }
340 1c412d48 2021-06-25 op } while (!is_heading(buffer->current_line->parent));
341 1c412d48 2021-06-25 op }
342 1c412d48 2021-06-25 op
343 1c412d48 2021-06-25 op void
344 2b2d2872 2021-06-20 op cmd_previous_page(struct buffer *buffer)
345 2b2d2872 2021-06-20 op {
346 83dce83d 2021-07-17 op if (!load_previous_page(current_tab))
347 2b2d2872 2021-06-20 op message("No previous page");
348 2b2d2872 2021-06-20 op else
349 83dce83d 2021-07-17 op start_loading_anim(current_tab);
350 2b2d2872 2021-06-20 op }
351 2b2d2872 2021-06-20 op
352 2b2d2872 2021-06-20 op void
353 2b2d2872 2021-06-20 op cmd_next_page(struct buffer *buffer)
354 2b2d2872 2021-06-20 op {
355 83dce83d 2021-07-17 op if (!load_next_page(current_tab))
356 2b2d2872 2021-06-20 op message("No next page");
357 2b2d2872 2021-06-20 op else
358 83dce83d 2021-07-17 op start_loading_anim(current_tab);
359 2b2d2872 2021-06-20 op }
360 2b2d2872 2021-06-20 op
361 2b2d2872 2021-06-20 op void
362 2b2d2872 2021-06-20 op cmd_clear_minibuf(struct buffer *buffer)
363 2b2d2872 2021-06-20 op {
364 2b2d2872 2021-06-20 op message(NULL);
365 2b2d2872 2021-06-20 op }
366 2b2d2872 2021-06-20 op
367 2b2d2872 2021-06-20 op void
368 2b2d2872 2021-06-20 op cmd_execute_extended_command(struct buffer *buffer)
369 2b2d2872 2021-06-20 op {
370 2b2d2872 2021-06-20 op size_t len;
371 2b2d2872 2021-06-20 op
372 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
373 2b2d2872 2021-06-20 op
374 2b2d2872 2021-06-20 op enter_minibuffer(eecmd_self_insert, eecmd_select, exit_minibuffer,
375 b1e1e41a 2021-07-14 op &eecmd_history, compl_eecmd, NULL);
376 2b2d2872 2021-06-20 op
377 2b2d2872 2021-06-20 op len = sizeof(ministate.prompt);
378 2b2d2872 2021-06-20 op strlcpy(ministate.prompt, "", len);
379 2b2d2872 2021-06-20 op
380 2b2d2872 2021-06-20 op if (thiskey.meta)
381 2b2d2872 2021-06-20 op strlcat(ministate.prompt, "M-", len);
382 2b2d2872 2021-06-20 op
383 2b2d2872 2021-06-20 op strlcat(ministate.prompt, ui_keyname(thiskey.key), len);
384 2b2d2872 2021-06-20 op
385 2b2d2872 2021-06-20 op if (thiskey.meta)
386 2b2d2872 2021-06-20 op strlcat(ministate.prompt, " ", len);
387 2b2d2872 2021-06-20 op }
388 2b2d2872 2021-06-20 op
389 2b2d2872 2021-06-20 op void
390 2b2d2872 2021-06-20 op cmd_tab_close(struct buffer *buffer)
391 2b2d2872 2021-06-20 op {
392 2b2d2872 2021-06-20 op struct tab *tab, *t;
393 2b2d2872 2021-06-20 op
394 83dce83d 2021-07-17 op tab = current_tab;
395 2b2d2872 2021-06-20 op if (TAILQ_PREV(tab, tabshead, tabs) == NULL &&
396 2b2d2872 2021-06-20 op TAILQ_NEXT(tab, tabs) == NULL) {
397 2b2d2872 2021-06-20 op message("Can't close the only tab.");
398 2b2d2872 2021-06-20 op return;
399 2b2d2872 2021-06-20 op }
400 2b2d2872 2021-06-20 op
401 2b2d2872 2021-06-20 op if (evtimer_pending(&tab->loadingev, NULL))
402 2b2d2872 2021-06-20 op evtimer_del(&tab->loadingev);
403 2b2d2872 2021-06-20 op
404 2b2d2872 2021-06-20 op stop_tab(tab);
405 2b2d2872 2021-06-20 op
406 2b2d2872 2021-06-20 op if ((t = TAILQ_PREV(tab, tabshead, tabs)) == NULL)
407 2b2d2872 2021-06-20 op t = TAILQ_NEXT(tab, tabs);
408 2b2d2872 2021-06-20 op TAILQ_REMOVE(&tabshead, tab, tabs);
409 2b2d2872 2021-06-20 op free(tab);
410 2b2d2872 2021-06-20 op
411 2b2d2872 2021-06-20 op switch_to_tab(t);
412 2b2d2872 2021-06-20 op }
413 2b2d2872 2021-06-20 op
414 2b2d2872 2021-06-20 op void
415 2b2d2872 2021-06-20 op cmd_tab_close_other(struct buffer *buffer)
416 2b2d2872 2021-06-20 op {
417 2b2d2872 2021-06-20 op struct tab *t, *i;
418 2b2d2872 2021-06-20 op
419 2b2d2872 2021-06-20 op TAILQ_FOREACH_SAFE(t, &tabshead, tabs, i) {
420 83dce83d 2021-07-17 op if (t == current_tab)
421 2b2d2872 2021-06-20 op continue;
422 2b2d2872 2021-06-20 op
423 2b2d2872 2021-06-20 op stop_tab(t);
424 2b2d2872 2021-06-20 op TAILQ_REMOVE(&tabshead, t, tabs);
425 2b2d2872 2021-06-20 op free(t);
426 2b2d2872 2021-06-20 op }
427 2b2d2872 2021-06-20 op }
428 2b2d2872 2021-06-20 op
429 2b2d2872 2021-06-20 op void
430 2b2d2872 2021-06-20 op cmd_tab_new(struct buffer *buffer)
431 2b2d2872 2021-06-20 op {
432 2b2d2872 2021-06-20 op const char *url;
433 2b2d2872 2021-06-20 op
434 2b2d2872 2021-06-20 op if ((url = new_tab_url) == NULL)
435 2b2d2872 2021-06-20 op url = NEW_TAB_URL;
436 2b2d2872 2021-06-20 op
437 2b2d2872 2021-06-20 op new_tab(url);
438 2b2d2872 2021-06-20 op }
439 2b2d2872 2021-06-20 op
440 2b2d2872 2021-06-20 op void
441 2b2d2872 2021-06-20 op cmd_tab_next(struct buffer *buffer)
442 2b2d2872 2021-06-20 op {
443 83dce83d 2021-07-17 op struct tab *t;
444 2b2d2872 2021-06-20 op
445 83dce83d 2021-07-17 op if ((t = TAILQ_NEXT(current_tab, tabs)) == NULL)
446 2b2d2872 2021-06-20 op t = TAILQ_FIRST(&tabshead);
447 2b2d2872 2021-06-20 op t->flags &= ~TAB_URGENT;
448 83dce83d 2021-07-17 op current_tab = t;
449 2b2d2872 2021-06-20 op }
450 2b2d2872 2021-06-20 op
451 2b2d2872 2021-06-20 op void
452 2b2d2872 2021-06-20 op cmd_tab_previous(struct buffer *buffer)
453 2b2d2872 2021-06-20 op {
454 83dce83d 2021-07-17 op struct tab *t;
455 2b2d2872 2021-06-20 op
456 83dce83d 2021-07-17 op if ((t = TAILQ_PREV(current_tab, tabshead, tabs)) == NULL)
457 2b2d2872 2021-06-20 op t = TAILQ_LAST(&tabshead, tabshead);
458 2b2d2872 2021-06-20 op t->flags &= ~TAB_URGENT;
459 83dce83d 2021-07-17 op current_tab = t;
460 2b2d2872 2021-06-20 op }
461 2b2d2872 2021-06-20 op
462 2b2d2872 2021-06-20 op void
463 2b2d2872 2021-06-20 op cmd_tab_move(struct buffer *buffer)
464 2b2d2872 2021-06-20 op {
465 83dce83d 2021-07-17 op struct tab *t;
466 2b2d2872 2021-06-20 op
467 83dce83d 2021-07-17 op t = TAILQ_NEXT(current_tab, tabs);
468 83dce83d 2021-07-17 op TAILQ_REMOVE(&tabshead, current_tab, tabs);
469 2b2d2872 2021-06-20 op
470 2b2d2872 2021-06-20 op if (t == NULL)
471 83dce83d 2021-07-17 op TAILQ_INSERT_HEAD(&tabshead, current_tab, tabs);
472 2b2d2872 2021-06-20 op else
473 83dce83d 2021-07-17 op TAILQ_INSERT_AFTER(&tabshead, t, current_tab, tabs);
474 2b2d2872 2021-06-20 op }
475 2b2d2872 2021-06-20 op
476 2b2d2872 2021-06-20 op void
477 2b2d2872 2021-06-20 op cmd_tab_move_to(struct buffer *buffer)
478 2b2d2872 2021-06-20 op {
479 83dce83d 2021-07-17 op struct tab *t;
480 2b2d2872 2021-06-20 op
481 83dce83d 2021-07-17 op t = TAILQ_PREV(current_tab, tabshead, tabs);
482 83dce83d 2021-07-17 op TAILQ_REMOVE(&tabshead, current_tab, tabs);
483 2b2d2872 2021-06-20 op
484 2b2d2872 2021-06-20 op if (t == NULL) {
485 2b2d2872 2021-06-20 op if (TAILQ_EMPTY(&tabshead))
486 83dce83d 2021-07-17 op TAILQ_INSERT_HEAD(&tabshead, current_tab, tabs);
487 2b2d2872 2021-06-20 op else
488 83dce83d 2021-07-17 op TAILQ_INSERT_TAIL(&tabshead, current_tab, tabs);
489 2b2d2872 2021-06-20 op } else
490 83dce83d 2021-07-17 op TAILQ_INSERT_BEFORE(t, current_tab, tabs);
491 2b2d2872 2021-06-20 op }
492 2b2d2872 2021-06-20 op
493 2b2d2872 2021-06-20 op void
494 65601367 2021-07-14 op cmd_tab_select(struct buffer *buffer)
495 65601367 2021-07-14 op {
496 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
497 65601367 2021-07-14 op
498 40fbc354 2021-07-14 op enter_minibuffer(sensible_self_insert, ts_select, exit_minibuffer,
499 65601367 2021-07-14 op NULL, compl_ts, NULL);
500 65601367 2021-07-14 op strlcpy(ministate.prompt, "Select tab: ", sizeof(ministate.prompt));
501 65601367 2021-07-14 op }
502 65601367 2021-07-14 op
503 65601367 2021-07-14 op void
504 2b2d2872 2021-06-20 op cmd_load_url(struct buffer *buffer)
505 2b2d2872 2021-06-20 op {
506 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
507 2b2d2872 2021-06-20 op
508 40fbc354 2021-07-14 op enter_minibuffer(sensible_self_insert, lu_select, exit_minibuffer,
509 e5a2797f 2021-07-13 op &lu_history, NULL, NULL);
510 2b2d2872 2021-06-20 op strlcpy(ministate.prompt, "Load URL: ", sizeof(ministate.prompt));
511 2b2d2872 2021-06-20 op strlcpy(ministate.buf, "gemini://", sizeof(ministate.buf));
512 2b2d2872 2021-06-20 op cmd_move_end_of_line(&ministate.buffer);
513 2b2d2872 2021-06-20 op }
514 2b2d2872 2021-06-20 op
515 2b2d2872 2021-06-20 op void
516 2b2d2872 2021-06-20 op cmd_load_current_url(struct buffer *buffer)
517 2b2d2872 2021-06-20 op {
518 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
519 2b2d2872 2021-06-20 op
520 40fbc354 2021-07-14 op enter_minibuffer(sensible_self_insert, lu_select, exit_minibuffer,
521 e5a2797f 2021-07-13 op &lu_history, NULL, NULL);
522 2b2d2872 2021-06-20 op strlcpy(ministate.prompt, "Load URL: ", sizeof(ministate.prompt));
523 83dce83d 2021-07-17 op strlcpy(ministate.buf, current_tab->hist_cur->h, sizeof(ministate.buf));
524 2b2d2872 2021-06-20 op ministate.buffer.cpoff = utf8_cplen(ministate.buf);
525 2b2d2872 2021-06-20 op }
526 2b2d2872 2021-06-20 op
527 2b2d2872 2021-06-20 op void
528 661233ed 2021-07-14 op cmd_reload_page(struct buffer *buffer)
529 661233ed 2021-07-14 op {
530 83dce83d 2021-07-17 op load_url_in_tab(current_tab, current_tab->hist_cur->h);
531 661233ed 2021-07-14 op }
532 661233ed 2021-07-14 op
533 661233ed 2021-07-14 op void
534 2b2d2872 2021-06-20 op cmd_bookmark_page(struct buffer *buffer)
535 2b2d2872 2021-06-20 op {
536 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
537 ca231710 2021-07-15 op
538 40fbc354 2021-07-14 op enter_minibuffer(sensible_self_insert, bp_select, exit_minibuffer, NULL,
539 e5a2797f 2021-07-13 op NULL, NULL);
540 2b2d2872 2021-06-20 op strlcpy(ministate.prompt, "Bookmark URL: ", sizeof(ministate.prompt));
541 83dce83d 2021-07-17 op strlcpy(ministate.buf, current_tab->hist_cur->h, sizeof(ministate.buf));
542 2b2d2872 2021-06-20 op ministate.buffer.cpoff = utf8_cplen(ministate.buf);
543 2b2d2872 2021-06-20 op }
544 2b2d2872 2021-06-20 op
545 2b2d2872 2021-06-20 op void
546 2b2d2872 2021-06-20 op cmd_list_bookmarks(struct buffer *buffer)
547 2b2d2872 2021-06-20 op {
548 83dce83d 2021-07-17 op load_url_in_tab(current_tab, "about:bookmarks");
549 2b2d2872 2021-06-20 op }
550 2b2d2872 2021-06-20 op
551 2b2d2872 2021-06-20 op void
552 2b2d2872 2021-06-20 op cmd_toggle_help(struct buffer *buffer)
553 2b2d2872 2021-06-20 op {
554 2b2d2872 2021-06-20 op ui_toggle_side_window();
555 753c6ac7 2021-07-14 op }
556 753c6ac7 2021-07-14 op
557 753c6ac7 2021-07-14 op void
558 753c6ac7 2021-07-14 op cmd_link_select(struct buffer *buffer)
559 753c6ac7 2021-07-14 op {
560 c1a72389 2021-07-15 op struct line *l;
561 c1a72389 2021-07-15 op
562 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
563 753c6ac7 2021-07-14 op
564 c1a72389 2021-07-15 op l = TAILQ_FIRST(&buffer->page.head);
565 c1a72389 2021-07-15 op while (l != NULL && l->type != LINE_LINK)
566 c1a72389 2021-07-15 op l = TAILQ_NEXT(l, lines);
567 c1a72389 2021-07-15 op
568 c1a72389 2021-07-15 op if (l == NULL) {
569 c1a72389 2021-07-15 op message("No links found");
570 c1a72389 2021-07-15 op return;
571 c1a72389 2021-07-15 op }
572 c1a72389 2021-07-15 op
573 40fbc354 2021-07-14 op enter_minibuffer(sensible_self_insert, ls_select, exit_minibuffer,
574 c1a72389 2021-07-15 op NULL, compl_ls, l);
575 753c6ac7 2021-07-14 op strlcpy(ministate.prompt, "Select link: ", sizeof(ministate.prompt));
576 753c6ac7 2021-07-14 op }
577 753c6ac7 2021-07-14 op
578 753c6ac7 2021-07-14 op void
579 753c6ac7 2021-07-14 op cmd_swiper(struct buffer *buffer)
580 753c6ac7 2021-07-14 op {
581 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
582 753c6ac7 2021-07-14 op
583 40fbc354 2021-07-14 op enter_minibuffer(sensible_self_insert, swiper_select, exit_minibuffer,
584 753c6ac7 2021-07-14 op NULL, compl_swiper, TAILQ_FIRST(&buffer->page.head));
585 753c6ac7 2021-07-14 op strlcpy(ministate.prompt, "Select line: ", sizeof(ministate.prompt));
586 edd9a650 2021-07-15 op }
587 edd9a650 2021-07-15 op
588 edd9a650 2021-07-15 op void
589 edd9a650 2021-07-15 op cmd_toc(struct buffer *buffer)
590 edd9a650 2021-07-15 op {
591 c1a72389 2021-07-15 op struct line *l;
592 c1a72389 2021-07-15 op
593 ca231710 2021-07-15 op GUARD_RECURSIVE_MINIBUFFER();
594 edd9a650 2021-07-15 op
595 c1a72389 2021-07-15 op l = TAILQ_FIRST(&buffer->page.head);
596 c1a72389 2021-07-15 op while (l != NULL &&
597 c1a72389 2021-07-15 op l->type != LINE_TITLE_1 &&
598 c1a72389 2021-07-15 op l->type != LINE_TITLE_2 &&
599 c1a72389 2021-07-15 op l->type != LINE_TITLE_3)
600 c1a72389 2021-07-15 op l = TAILQ_NEXT(l, lines);
601 c1a72389 2021-07-15 op
602 c1a72389 2021-07-15 op if (l == NULL) {
603 c1a72389 2021-07-15 op message("No headings found");
604 c1a72389 2021-07-15 op return;
605 c1a72389 2021-07-15 op }
606 c1a72389 2021-07-15 op
607 edd9a650 2021-07-15 op enter_minibuffer(sensible_self_insert, toc_select, exit_minibuffer,
608 c1a72389 2021-07-15 op NULL, compl_toc, l);
609 edd9a650 2021-07-15 op strlcpy(ministate.prompt, "Select heading: ",
610 edd9a650 2021-07-15 op sizeof(ministate.prompt));
611 2b2d2872 2021-06-20 op }
612 2b2d2872 2021-06-20 op
613 2b2d2872 2021-06-20 op void
614 61251035 2021-06-26 op cmd_inc_fill_column(struct buffer *buffer)
615 61251035 2021-06-26 op {
616 61251035 2021-06-26 op if (fill_column == INT_MAX)
617 61251035 2021-06-26 op return;
618 61251035 2021-06-26 op
619 61251035 2021-06-26 op fill_column += 2;
620 61251035 2021-06-26 op message("fill-column: %d", fill_column);
621 61251035 2021-06-26 op
622 61251035 2021-06-26 op ui_schedule_redraw();
623 61251035 2021-06-26 op }
624 61251035 2021-06-26 op
625 61251035 2021-06-26 op void
626 61251035 2021-06-26 op cmd_dec_fill_column(struct buffer *buffer)
627 61251035 2021-06-26 op {
628 61251035 2021-06-26 op if (fill_column == INT_MAX || fill_column < 8)
629 61251035 2021-06-26 op return;
630 61251035 2021-06-26 op
631 61251035 2021-06-26 op fill_column -= 2;
632 61251035 2021-06-26 op message("fill-column: %d", fill_column);
633 61251035 2021-06-26 op
634 61251035 2021-06-26 op ui_schedule_redraw();
635 61251035 2021-06-26 op }
636 61251035 2021-06-26 op
637 61251035 2021-06-26 op void
638 2b2d2872 2021-06-20 op cmd_olivetti_mode(struct buffer *buffer)
639 2b2d2872 2021-06-20 op {
640 2b2d2872 2021-06-20 op olivetti_mode = !olivetti_mode;
641 2b2d2872 2021-06-20 op if (olivetti_mode)
642 2b2d2872 2021-06-20 op message("olivetti-mode enabled");
643 2b2d2872 2021-06-20 op else
644 2b2d2872 2021-06-20 op message("olivetti-mode disabled");
645 2b2d2872 2021-06-20 op
646 2b2d2872 2021-06-20 op ui_schedule_redraw();
647 2b2d2872 2021-06-20 op }
648 2b2d2872 2021-06-20 op
649 2b2d2872 2021-06-20 op void
650 2b2d2872 2021-06-20 op cmd_mini_delete_char(struct buffer *buffer)
651 2b2d2872 2021-06-20 op {
652 2b2d2872 2021-06-20 op char *c, *n;
653 2b2d2872 2021-06-20 op
654 2b2d2872 2021-06-20 op if (!in_minibuffer) {
655 2b2d2872 2021-06-20 op message("text is read-only");
656 2b2d2872 2021-06-20 op return;
657 2b2d2872 2021-06-20 op }
658 2b2d2872 2021-06-20 op
659 2b2d2872 2021-06-20 op minibuffer_taint_hist();
660 2b2d2872 2021-06-20 op
661 2b2d2872 2021-06-20 op c = utf8_nth(buffer->current_line->line, buffer->cpoff);
662 2b2d2872 2021-06-20 op if (*c == '\0')
663 2b2d2872 2021-06-20 op return;
664 2b2d2872 2021-06-20 op n = utf8_next_cp(c);
665 2b2d2872 2021-06-20 op
666 2b2d2872 2021-06-20 op memmove(c, n, strlen(n)+1);
667 b1e1e41a 2021-07-14 op
668 b1e1e41a 2021-07-14 op recompute_completions(0);
669 2b2d2872 2021-06-20 op }
670 2b2d2872 2021-06-20 op
671 2b2d2872 2021-06-20 op void
672 2b2d2872 2021-06-20 op cmd_mini_delete_backward_char(struct buffer *buffer)
673 2b2d2872 2021-06-20 op {
674 2b2d2872 2021-06-20 op char *c, *p, *start;
675 2b2d2872 2021-06-20 op
676 2b2d2872 2021-06-20 op if (!in_minibuffer) {
677 2b2d2872 2021-06-20 op message("text is read-only");
678 2b2d2872 2021-06-20 op return;
679 2b2d2872 2021-06-20 op }
680 2b2d2872 2021-06-20 op
681 2b2d2872 2021-06-20 op minibuffer_taint_hist();
682 2b2d2872 2021-06-20 op
683 2b2d2872 2021-06-20 op c = utf8_nth(buffer->current_line->line, buffer->cpoff);
684 2b2d2872 2021-06-20 op start = buffer->current_line->line;
685 2b2d2872 2021-06-20 op if (c == start)
686 2b2d2872 2021-06-20 op return;
687 2b2d2872 2021-06-20 op p = utf8_prev_cp(c-1, start);
688 2b2d2872 2021-06-20 op
689 2b2d2872 2021-06-20 op memmove(p, c, strlen(c)+1);
690 2b2d2872 2021-06-20 op buffer->cpoff--;
691 b1e1e41a 2021-07-14 op
692 b1e1e41a 2021-07-14 op recompute_completions(0);
693 2b2d2872 2021-06-20 op }
694 2b2d2872 2021-06-20 op
695 2b2d2872 2021-06-20 op void
696 2b2d2872 2021-06-20 op cmd_mini_kill_line(struct buffer *buffer)
697 2b2d2872 2021-06-20 op {
698 2b2d2872 2021-06-20 op char *c;
699 2b2d2872 2021-06-20 op
700 2b2d2872 2021-06-20 op if (!in_minibuffer) {
701 2b2d2872 2021-06-20 op message("text is read-only");
702 2b2d2872 2021-06-20 op return;
703 2b2d2872 2021-06-20 op }
704 2b2d2872 2021-06-20 op
705 2b2d2872 2021-06-20 op minibuffer_taint_hist();
706 2b2d2872 2021-06-20 op c = utf8_nth(buffer->current_line->line, buffer->cpoff);
707 2b2d2872 2021-06-20 op *c = '\0';
708 b1e1e41a 2021-07-14 op
709 b1e1e41a 2021-07-14 op recompute_completions(0);
710 2b2d2872 2021-06-20 op }
711 2b2d2872 2021-06-20 op
712 2b2d2872 2021-06-20 op void
713 2b2d2872 2021-06-20 op cmd_mini_abort(struct buffer *buffer)
714 2b2d2872 2021-06-20 op {
715 2b2d2872 2021-06-20 op if (!in_minibuffer)
716 2b2d2872 2021-06-20 op return;
717 2b2d2872 2021-06-20 op
718 2b2d2872 2021-06-20 op ministate.abortfn();
719 2b2d2872 2021-06-20 op }
720 2b2d2872 2021-06-20 op
721 2b2d2872 2021-06-20 op void
722 2b2d2872 2021-06-20 op cmd_mini_complete_and_exit(struct buffer *buffer)
723 2b2d2872 2021-06-20 op {
724 2b2d2872 2021-06-20 op if (!in_minibuffer)
725 2b2d2872 2021-06-20 op return;
726 2b2d2872 2021-06-20 op
727 2b2d2872 2021-06-20 op minibuffer_taint_hist();
728 2b2d2872 2021-06-20 op ministate.donefn();
729 2b2d2872 2021-06-20 op }
730 2b2d2872 2021-06-20 op
731 2b2d2872 2021-06-20 op void
732 2b2d2872 2021-06-20 op cmd_mini_previous_history_element(struct buffer *buffer)
733 2b2d2872 2021-06-20 op {
734 2b2d2872 2021-06-20 op if (ministate.history == NULL) {
735 2b2d2872 2021-06-20 op message("No history");
736 2b2d2872 2021-06-20 op return;
737 2b2d2872 2021-06-20 op }
738 2b2d2872 2021-06-20 op
739 2b2d2872 2021-06-20 op if (ministate.hist_cur == NULL ||
740 2b2d2872 2021-06-20 op (ministate.hist_cur = TAILQ_PREV(ministate.hist_cur, mhisthead, entries)) == NULL) {
741 2b2d2872 2021-06-20 op ministate.hist_cur = TAILQ_LAST(&ministate.history->head, mhisthead);
742 2b2d2872 2021-06-20 op ministate.hist_off = ministate.history->len - 1;
743 2b2d2872 2021-06-20 op if (ministate.hist_cur == NULL)
744 fc14510d 2021-07-14 op message("No prev history item");
745 2b2d2872 2021-06-20 op } else {
746 2b2d2872 2021-06-20 op ministate.hist_off--;
747 2b2d2872 2021-06-20 op }
748 2b2d2872 2021-06-20 op
749 2b2d2872 2021-06-20 op if (ministate.hist_cur != NULL)
750 2b2d2872 2021-06-20 op buffer->current_line->line = ministate.hist_cur->h;
751 2b2d2872 2021-06-20 op }
752 2b2d2872 2021-06-20 op
753 2b2d2872 2021-06-20 op void
754 2b2d2872 2021-06-20 op cmd_mini_next_history_element(struct buffer *buffer)
755 2b2d2872 2021-06-20 op {
756 2b2d2872 2021-06-20 op if (ministate.history == NULL) {
757 2b2d2872 2021-06-20 op message("No history");
758 2b2d2872 2021-06-20 op return;
759 2b2d2872 2021-06-20 op }
760 2b2d2872 2021-06-20 op
761 2b2d2872 2021-06-20 op if (ministate.hist_cur == NULL ||
762 2b2d2872 2021-06-20 op (ministate.hist_cur = TAILQ_NEXT(ministate.hist_cur, entries)) == NULL) {
763 2b2d2872 2021-06-20 op ministate.hist_cur = TAILQ_FIRST(&ministate.history->head);
764 2b2d2872 2021-06-20 op ministate.hist_off = 0;
765 2b2d2872 2021-06-20 op if (ministate.hist_cur == NULL)
766 fc14510d 2021-07-14 op message("No next history item");
767 2b2d2872 2021-06-20 op } else {
768 2b2d2872 2021-06-20 op ministate.hist_off++;
769 2b2d2872 2021-06-20 op }
770 2b2d2872 2021-06-20 op
771 2b2d2872 2021-06-20 op if (ministate.hist_cur != NULL)
772 2b2d2872 2021-06-20 op buffer->current_line->line = ministate.hist_cur->h;
773 2b2d2872 2021-06-20 op }
774 e7b982f4 2021-07-14 op
775 e7b982f4 2021-07-14 op void
776 e7b982f4 2021-07-14 op cmd_previous_completion(struct buffer *buffer)
777 e7b982f4 2021-07-14 op {
778 e7b982f4 2021-07-14 op if (in_minibuffer != MB_COMPREAD)
779 e7b982f4 2021-07-14 op return;
780 e7b982f4 2021-07-14 op
781 e7b982f4 2021-07-14 op buffer = &ministate.compl.buffer;
782 e7b982f4 2021-07-14 op
783 e7b982f4 2021-07-14 op if (buffer->current_line != NULL)
784 e7b982f4 2021-07-14 op buffer->current_line->parent->type = LINE_COMPL;
785 e7b982f4 2021-07-14 op
786 e7b982f4 2021-07-14 op forward_line(buffer, -1);
787 e7b982f4 2021-07-14 op
788 e7b982f4 2021-07-14 op if (buffer->current_line != NULL)
789 e7b982f4 2021-07-14 op buffer->current_line->parent->type = LINE_COMPL_CURRENT;
790 e7b982f4 2021-07-14 op }
791 e7b982f4 2021-07-14 op
792 e7b982f4 2021-07-14 op void
793 e7b982f4 2021-07-14 op cmd_next_completion(struct buffer *buffer)
794 e7b982f4 2021-07-14 op {
795 e7b982f4 2021-07-14 op if (in_minibuffer != MB_COMPREAD)
796 e7b982f4 2021-07-14 op return;
797 e7b982f4 2021-07-14 op
798 e7b982f4 2021-07-14 op buffer = &ministate.compl.buffer;
799 e7b982f4 2021-07-14 op
800 e7b982f4 2021-07-14 op if (buffer->current_line != NULL)
801 e7b982f4 2021-07-14 op buffer->current_line->parent->type = LINE_COMPL;
802 e7b982f4 2021-07-14 op
803 e7b982f4 2021-07-14 op forward_line(buffer, +1);
804 e7b982f4 2021-07-14 op
805 e7b982f4 2021-07-14 op if (buffer->current_line != NULL)
806 e7b982f4 2021-07-14 op buffer->current_line->parent->type = LINE_COMPL_CURRENT;
807 e7b982f4 2021-07-14 op }
808 e7b982f4 2021-07-14 op
809 e7b982f4 2021-07-14 op void
810 e7b982f4 2021-07-14 op cmd_insert_current_candidate(struct buffer *buffer)
811 e7b982f4 2021-07-14 op {
812 e7b982f4 2021-07-14 op struct vline *vl;
813 e7b982f4 2021-07-14 op
814 e7b982f4 2021-07-14 op if (in_minibuffer != MB_COMPREAD)
815 e7b982f4 2021-07-14 op return;
816 e7b982f4 2021-07-14 op
817 e7b982f4 2021-07-14 op buffer = &ministate.compl.buffer;
818 e7b982f4 2021-07-14 op if ((vl = buffer->current_line) == NULL)
819 e7b982f4 2021-07-14 op return;
820 e7b982f4 2021-07-14 op
821 e7b982f4 2021-07-14 op minibuffer_taint_hist();
822 e7b982f4 2021-07-14 op strlcpy(ministate.buf, vl->parent->line, sizeof(ministate.buf));
823 e7b982f4 2021-07-14 op ministate.buffer.cpoff = utf8_cplen(ministate.buf);
824 e7b982f4 2021-07-14 op }
825 8a3b5609 2021-07-15 op
826 8a3b5609 2021-07-15 op void
827 8a3b5609 2021-07-15 op cmd_suspend_telescope(struct buffer *buffer)
828 8a3b5609 2021-07-15 op {
829 8a3b5609 2021-07-15 op message("Zzz...");
830 8a3b5609 2021-07-15 op ui_suspend();
831 8a3b5609 2021-07-15 op }
832 987d9c88 2021-07-15 op
833 987d9c88 2021-07-15 op void
834 987d9c88 2021-07-15 op cmd_toggle_pre_wrap(struct buffer *buffer)
835 987d9c88 2021-07-15 op {
836 987d9c88 2021-07-15 op dont_wrap_pre = !dont_wrap_pre;
837 987d9c88 2021-07-15 op
838 987d9c88 2021-07-15 op if (dont_wrap_pre)
839 987d9c88 2021-07-15 op message("Don't wrap preformatted blocks");
840 987d9c88 2021-07-15 op else
841 987d9c88 2021-07-15 op message("Wrap preformatted blocks");
842 987d9c88 2021-07-15 op
843 987d9c88 2021-07-15 op ui_schedule_redraw();
844 987d9c88 2021-07-15 op }
845 de190a2b 2021-07-17 op
846 de190a2b 2021-07-17 op void
847 de190a2b 2021-07-17 op cmd_mini_goto_beginning(struct buffer *buffer)
848 de190a2b 2021-07-17 op {
849 de190a2b 2021-07-17 op struct vline *vl;
850 de190a2b 2021-07-17 op
851 de190a2b 2021-07-17 op if (!in_minibuffer)
852 de190a2b 2021-07-17 op return;
853 de190a2b 2021-07-17 op
854 de190a2b 2021-07-17 op buffer = &ministate.compl.buffer;
855 de190a2b 2021-07-17 op
856 de190a2b 2021-07-17 op if ((vl = buffer->current_line) != NULL)
857 de190a2b 2021-07-17 op vl->parent->type = LINE_COMPL;
858 de190a2b 2021-07-17 op
859 de190a2b 2021-07-17 op vl = TAILQ_FIRST(&buffer->head);
860 de190a2b 2021-07-17 op while (vl != NULL && vl->parent->flags & L_HIDDEN)
861 de190a2b 2021-07-17 op vl = TAILQ_NEXT(vl, vlines);
862 de190a2b 2021-07-17 op
863 de190a2b 2021-07-17 op if (vl == NULL)
864 de190a2b 2021-07-17 op return;
865 de190a2b 2021-07-17 op
866 de190a2b 2021-07-17 op vl->parent->type = LINE_COMPL_CURRENT;
867 de190a2b 2021-07-17 op buffer->top_line = vl;
868 de190a2b 2021-07-17 op buffer->current_line = vl;
869 de190a2b 2021-07-17 op }
870 de190a2b 2021-07-17 op
871 de190a2b 2021-07-17 op void
872 de190a2b 2021-07-17 op cmd_mini_goto_end(struct buffer *buffer)
873 de190a2b 2021-07-17 op {
874 de190a2b 2021-07-17 op struct vline *vl;
875 de190a2b 2021-07-17 op
876 de190a2b 2021-07-17 op if (!in_minibuffer)
877 de190a2b 2021-07-17 op return;
878 de190a2b 2021-07-17 op
879 de190a2b 2021-07-17 op buffer = &ministate.compl.buffer;
880 de190a2b 2021-07-17 op
881 de190a2b 2021-07-17 op if ((vl = buffer->current_line) != NULL)
882 de190a2b 2021-07-17 op vl->parent->type = LINE_COMPL;
883 de190a2b 2021-07-17 op
884 de190a2b 2021-07-17 op vl = TAILQ_LAST(&buffer->head, vhead);
885 de190a2b 2021-07-17 op while (vl != NULL && vl->parent->flags & L_HIDDEN)
886 de190a2b 2021-07-17 op vl = TAILQ_PREV(vl, vhead, vlines);
887 de190a2b 2021-07-17 op
888 de190a2b 2021-07-17 op if (vl == NULL)
889 de190a2b 2021-07-17 op return;
890 de190a2b 2021-07-17 op
891 de190a2b 2021-07-17 op vl->parent->type = LINE_COMPL_CURRENT;
892 de190a2b 2021-07-17 op buffer->current_line = vl;
893 de190a2b 2021-07-17 op }