Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include "compat.h"
19 #include <limits.h>
20 #include <stdlib.h>
21 #include <string.h>
23 #include "compl.h"
24 #include "defaults.h"
25 #include "minibuffer.h"
26 #include "session.h"
27 #include "telescope.h"
28 #include "ui.h"
29 #include "utf8.h"
31 #define GUARD_RECURSIVE_MINIBUFFER() \
32 do { \
33 if (in_minibuffer) { \
34 message("enable-recursive-minibuffers " \
35 "is not yet available."); \
36 return; \
37 } \
38 } while(0)
40 #define GUARD_READ_ONLY() \
41 do { \
42 if (!in_minibuffer) { \
43 message("text is read-only"); \
44 return; \
45 } \
46 } while(0)
48 /* return 1 if moved, 0 otherwise */
49 static inline int
50 forward_line(struct buffer *buffer, int n)
51 {
52 struct vline *vl;
53 int did;
55 if (buffer->current_line == NULL)
56 return 0;
57 vl = buffer->current_line;
59 did = 0;
60 while (n != 0) {
61 if (n > 0) {
62 vl = TAILQ_NEXT(vl, vlines);
63 if (vl == NULL)
64 return did;
65 if (vl->parent->flags & L_HIDDEN)
66 continue;
67 buffer->current_line = vl;
68 n--;
69 } else {
70 vl = TAILQ_PREV(vl, vhead, vlines);
71 if (vl == NULL)
72 return did;
73 if (vl->parent->flags & L_HIDDEN)
74 continue;
75 if (buffer->current_line == buffer->top_line) {
76 buffer->line_off--;
77 buffer->top_line = vl;
78 }
79 buffer->current_line = vl;
80 n++;
81 }
83 did = 1;
84 }
86 return did;
87 }
89 void
90 cmd_previous_line(struct buffer *buffer)
91 {
92 forward_line(buffer, -1);
93 }
95 void
96 cmd_next_line(struct buffer *buffer)
97 {
98 forward_line(buffer, +1);
99 }
101 void
102 cmd_backward_char(struct buffer *buffer)
104 if (buffer->cpoff != 0)
105 buffer->cpoff--;
108 void
109 cmd_forward_char(struct buffer *buffer)
111 size_t len = 0;
113 if (buffer->current_line == NULL)
114 return;
116 if (buffer->current_line->line != NULL)
117 len = utf8_cplen(buffer->current_line->line);
118 if (++buffer->cpoff > len)
119 buffer->cpoff = len;
122 void
123 cmd_backward_paragraph(struct buffer *buffer)
125 do {
126 if (!forward_line(buffer, -1)) {
127 message("No previous paragraph");
128 return;
130 } while (buffer->current_line->line != NULL ||
131 buffer->current_line->parent->type != LINE_TEXT);
134 void
135 cmd_forward_paragraph(struct buffer *buffer)
137 do {
138 if (!forward_line(buffer, +1)) {
139 message("No next paragraph");
140 return;
142 } while (buffer->current_line->line != NULL ||
143 buffer->current_line->parent->type != LINE_TEXT);
146 void
147 cmd_move_beginning_of_line(struct buffer *buffer)
149 buffer->cpoff = 0;
152 void
153 cmd_move_end_of_line(struct buffer *buffer)
155 struct vline *vl;
157 vl = buffer->current_line;
158 if (vl == NULL || vl->line == NULL)
159 return;
160 buffer->cpoff = utf8_cplen(vl->line);
163 void
164 cmd_redraw(struct buffer *buffer)
166 ui_schedule_redraw();
169 void
170 cmd_scroll_line_up(struct buffer *buffer)
172 struct vline *vl;
174 for (;;) {
175 if (buffer->top_line == NULL)
176 return;
178 if ((vl = TAILQ_PREV(buffer->top_line, vhead, vlines))
179 == NULL)
180 return;
182 buffer->top_line = vl;
184 if (vl->parent->flags & L_HIDDEN)
185 continue;
187 break;
190 buffer->line_off--;
192 forward_line(buffer, -1);
195 void
196 cmd_scroll_line_down(struct buffer *buffer)
198 if (!forward_line(buffer, +1))
199 return;
201 for (;;) {
202 if (buffer->top_line == NULL)
203 return;
205 buffer->top_line = TAILQ_NEXT(buffer->top_line, vlines);
206 if (buffer->top_line->parent->flags & L_HIDDEN)
207 continue;
208 break;
211 buffer->line_off++;
214 void
215 cmd_scroll_up(struct buffer *buffer)
217 struct vline *vl;
218 int i;
220 if (buffer->top_line == NULL)
221 return;
223 for (i = 0; i < body_lines; ++i) {
224 vl = TAILQ_PREV(buffer->top_line, vhead, vlines);
225 if (vl == NULL)
226 break;
227 buffer->line_off--;
228 buffer->top_line = vl;
229 forward_line(buffer, -1);
233 void
234 cmd_scroll_down(struct buffer *buffer)
236 int i;
238 if (buffer->top_line == NULL)
239 return;
241 for (i = 0; i < body_lines; ++i) {
242 if (!forward_line(buffer, +1))
243 break;
245 buffer->top_line = TAILQ_NEXT(buffer->top_line,
246 vlines);
247 buffer->line_off++;
251 void
252 cmd_beginning_of_buffer(struct buffer *buffer)
254 buffer->current_line = TAILQ_FIRST(&buffer->head);
255 buffer->cpoff = 0;
256 buffer->top_line = buffer->current_line;
257 buffer->line_off = 0;
260 void
261 cmd_end_of_buffer(struct buffer *buffer)
263 buffer->current_line = TAILQ_LAST(&buffer->head, vhead);
265 if (buffer->current_line == NULL)
266 return;
268 /* deal with invisible lines */
269 if (buffer->current_line->parent->flags & L_HIDDEN)
270 forward_line(buffer, -1);
272 cmd_move_end_of_line(buffer);
275 static void
276 kill_telescope_cb(int r, struct tab *tab)
278 if (r) {
279 save_session();
280 event_loopbreak();
284 void
285 cmd_kill_telescope(struct buffer *buffer)
287 yornp("really quit?", kill_telescope_cb, NULL);
290 void
291 cmd_push_button(struct buffer *buffer)
293 struct vline *vl;
294 struct line *l;
296 vl = buffer->current_line;
298 if (vl == NULL)
299 return;
301 switch (vl->parent->type) {
302 case LINE_LINK:
303 load_url_in_tab(current_tab, vl->parent->alt, NULL,
304 LU_MODE_NOCACHE);
305 break;
306 case LINE_PRE_START:
307 l = TAILQ_NEXT(vl->parent, lines);
308 for (; l != NULL; l = TAILQ_NEXT(l, lines)) {
309 if (l->type == LINE_PRE_END)
310 break;
311 l->flags ^= L_HIDDEN;
312 if (l->flags & L_HIDDEN)
313 buffer->line_max--;
314 else
315 buffer->line_max++;
317 break;
318 default:
319 break;
323 void
324 cmd_push_button_new_tab(struct buffer *buffer)
326 struct vline *vl;
328 vl = buffer->current_line;
329 if (vl == NULL || vl->parent->type != LINE_LINK)
330 return;
332 new_tab(vl->parent->alt, current_tab->hist_cur->h, current_tab);
335 void
336 cmd_previous_button(struct buffer *buffer)
338 struct excursion place;
340 save_excursion(&place, buffer);
342 do {
343 if (!forward_line(buffer, -1)) {
344 restore_excursion(&place, buffer);
345 message("No previous link");
346 return;
348 } while (buffer->current_line->parent->type != LINE_LINK);
351 void
352 cmd_next_button(struct buffer *buffer)
354 struct excursion place;
356 save_excursion(&place, buffer);
358 do {
359 if (!forward_line(buffer, +1)){
360 restore_excursion(&place, buffer);
361 message("No next link");
362 return;
364 } while (buffer->current_line->parent->type != LINE_LINK);
367 static inline int
368 is_heading(const struct line *l)
370 return l->type == LINE_TITLE_1 ||
371 l->type == LINE_TITLE_2 ||
372 l->type == LINE_TITLE_3;
375 void
376 cmd_previous_heading(struct buffer *buffer)
378 struct excursion place;
380 save_excursion(&place, buffer);
382 do {
383 if (!forward_line(buffer, -1)) {
384 restore_excursion(&place, buffer);
385 message("No previous heading");
386 return;
388 } while (!is_heading(buffer->current_line->parent));
391 void
392 cmd_next_heading(struct buffer *buffer)
394 struct excursion place;
396 save_excursion(&place, buffer);
398 do {
399 if (!forward_line(buffer, +1)) {
400 restore_excursion(&place, buffer);
401 message("No next heading");
402 return;
404 } while (!is_heading(buffer->current_line->parent));
407 void
408 cmd_previous_page(struct buffer *buffer)
410 if (!load_previous_page(current_tab))
411 message("No previous page");
414 void
415 cmd_next_page(struct buffer *buffer)
417 if (!load_next_page(current_tab))
418 message("No next page");
421 void
422 cmd_clear_minibuf(struct buffer *buffer)
424 message(NULL);
427 void
428 cmd_execute_extended_command(struct buffer *buffer)
430 size_t len;
432 GUARD_RECURSIVE_MINIBUFFER();
434 enter_minibuffer(sensible_self_insert, eecmd_select, exit_minibuffer,
435 &eecmd_history, compl_eecmd, NULL);
437 len = sizeof(ministate.prompt);
438 strlcpy(ministate.prompt, "", len);
440 if (thiskey.meta)
441 strlcat(ministate.prompt, "M-", len);
443 strlcat(ministate.prompt, ui_keyname(thiskey.key), len);
445 if (thiskey.meta)
446 strlcat(ministate.prompt, " ", len);
449 void
450 cmd_tab_close(struct buffer *buffer)
452 struct tab *tab, *t;
454 tab = current_tab;
456 if ((t = TAILQ_NEXT(tab, tabs)) != NULL ||
457 (t = TAILQ_PREV(tab, tabshead, tabs)) != NULL) {
458 switch_to_tab(t);
459 kill_tab(tab, 0);
460 } else
461 message("Can't close the only tab.");
465 void
466 cmd_tab_close_other(struct buffer *buffer)
468 struct tab *t, *i;
470 TAILQ_FOREACH_SAFE(t, &tabshead, tabs, i) {
471 if (t == current_tab)
472 continue;
474 kill_tab(t, 0);
478 void
479 cmd_tab_undo_close(struct buffer *buffer)
481 struct tab *t;
483 if ((t = unkill_tab()) == NULL) {
484 message("No recently-closed tabs");
485 return;
488 switch_to_tab(t);
491 void
492 cmd_tab_new(struct buffer *buffer)
494 const char *url;
496 if ((url = new_tab_url) == NULL)
497 url = NEW_TAB_URL;
499 new_tab(url, NULL, NULL);
502 void
503 cmd_tab_next(struct buffer *buffer)
505 struct tab *t;
507 if ((t = TAILQ_NEXT(current_tab, tabs)) == NULL)
508 t = TAILQ_FIRST(&tabshead);
509 switch_to_tab(t);
512 void
513 cmd_tab_previous(struct buffer *buffer)
515 struct tab *t;
517 if ((t = TAILQ_PREV(current_tab, tabshead, tabs)) == NULL)
518 t = TAILQ_LAST(&tabshead, tabshead);
519 switch_to_tab(t);
522 void
523 cmd_tab_move(struct buffer *buffer)
525 struct tab *t;
527 t = TAILQ_NEXT(current_tab, tabs);
528 TAILQ_REMOVE(&tabshead, current_tab, tabs);
530 if (t == NULL)
531 TAILQ_INSERT_HEAD(&tabshead, current_tab, tabs);
532 else
533 TAILQ_INSERT_AFTER(&tabshead, t, current_tab, tabs);
536 void
537 cmd_tab_move_to(struct buffer *buffer)
539 struct tab *t;
541 t = TAILQ_PREV(current_tab, tabshead, tabs);
542 TAILQ_REMOVE(&tabshead, current_tab, tabs);
544 if (t == NULL)
545 TAILQ_INSERT_TAIL(&tabshead, current_tab, tabs);
546 else
547 TAILQ_INSERT_BEFORE(t, current_tab, tabs);
550 void
551 cmd_tab_select(struct buffer *buffer)
553 GUARD_RECURSIVE_MINIBUFFER();
555 enter_minibuffer(sensible_self_insert, ts_select, exit_minibuffer,
556 NULL, compl_ts, NULL);
557 strlcpy(ministate.prompt, "Select tab: ", sizeof(ministate.prompt));
560 void
561 cmd_load_url(struct buffer *buffer)
563 GUARD_RECURSIVE_MINIBUFFER();
565 enter_minibuffer(sensible_self_insert, lu_select, exit_minibuffer,
566 &lu_history, NULL, NULL);
567 strlcpy(ministate.prompt, "Load URL: ", sizeof(ministate.prompt));
570 void
571 cmd_load_current_url(struct buffer *buffer)
573 GUARD_RECURSIVE_MINIBUFFER();
575 enter_minibuffer(sensible_self_insert, lu_select, exit_minibuffer,
576 &lu_history, NULL, NULL);
577 strlcpy(ministate.prompt, "Load URL: ", sizeof(ministate.prompt));
578 strlcpy(ministate.buf, current_tab->hist_cur->h, sizeof(ministate.buf));
579 ministate.buffer.cpoff = utf8_cplen(ministate.buf);
582 void
583 cmd_reload_page(struct buffer *buffer)
585 load_url_in_tab(current_tab, current_tab->hist_cur->h, NULL,
586 LU_MODE_NOHIST|LU_MODE_NOCACHE);
589 void
590 cmd_bookmark_page(struct buffer *buffer)
592 GUARD_RECURSIVE_MINIBUFFER();
594 enter_minibuffer(sensible_self_insert, bp_select, exit_minibuffer, NULL,
595 NULL, NULL);
596 strlcpy(ministate.prompt, "Bookmark URL: ", sizeof(ministate.prompt));
597 strlcpy(ministate.buf, current_tab->hist_cur->h, sizeof(ministate.buf));
598 ministate.buffer.cpoff = utf8_cplen(ministate.buf);
601 void
602 cmd_list_bookmarks(struct buffer *buffer)
604 load_url_in_tab(current_tab, "about:bookmarks", NULL, LU_MODE_NONE);
607 void
608 cmd_toggle_help(struct buffer *buffer)
610 ui_toggle_side_window(SIDE_WINDOW_LEFT);
613 void
614 cmd_link_select(struct buffer *buffer)
616 struct line *l;
618 GUARD_RECURSIVE_MINIBUFFER();
620 l = TAILQ_FIRST(&buffer->page.head);
621 while (l != NULL && l->type != LINE_LINK)
622 l = TAILQ_NEXT(l, lines);
624 if (l == NULL) {
625 message("No links found");
626 return;
629 enter_minibuffer(sensible_self_insert, ls_select, exit_minibuffer,
630 NULL, compl_ls, l);
631 strlcpy(ministate.prompt, "Select link: ", sizeof(ministate.prompt));
634 void
635 cmd_swiper(struct buffer *buffer)
637 GUARD_RECURSIVE_MINIBUFFER();
639 enter_minibuffer(sensible_self_insert, swiper_select, exit_minibuffer,
640 NULL, compl_swiper, TAILQ_FIRST(&buffer->page.head));
641 strlcpy(ministate.prompt, "Select line: ", sizeof(ministate.prompt));
644 void
645 cmd_toc(struct buffer *buffer)
647 struct line *l;
649 GUARD_RECURSIVE_MINIBUFFER();
651 l = TAILQ_FIRST(&buffer->page.head);
652 while (l != NULL &&
653 l->type != LINE_TITLE_1 &&
654 l->type != LINE_TITLE_2 &&
655 l->type != LINE_TITLE_3)
656 l = TAILQ_NEXT(l, lines);
658 if (l == NULL) {
659 message("No headings found");
660 return;
663 enter_minibuffer(sensible_self_insert, toc_select, exit_minibuffer,
664 NULL, compl_toc, l);
665 strlcpy(ministate.prompt, "Select heading: ",
666 sizeof(ministate.prompt));
669 void
670 cmd_inc_fill_column(struct buffer *buffer)
672 if (fill_column == INT_MAX)
673 return;
675 fill_column += 2;
676 message("fill-column: %d", fill_column);
678 ui_schedule_redraw();
681 void
682 cmd_dec_fill_column(struct buffer *buffer)
684 if (fill_column == INT_MAX || fill_column < 8)
685 return;
687 fill_column -= 2;
688 message("fill-column: %d", fill_column);
690 ui_schedule_redraw();
693 void
694 cmd_olivetti_mode(struct buffer *buffer)
696 olivetti_mode = !olivetti_mode;
697 if (olivetti_mode)
698 message("olivetti-mode enabled");
699 else
700 message("olivetti-mode disabled");
702 ui_schedule_redraw();
705 void
706 cmd_mini_delete_char(struct buffer *buffer)
708 char *c, *n;
710 GUARD_READ_ONLY();
712 minibuffer_taint_hist();
714 c = utf8_nth(buffer->current_line->line, buffer->cpoff);
715 if (*c == '\0')
716 return;
717 n = utf8_next_cp(c);
719 memmove(c, n, strlen(n)+1);
721 recompute_completions(0);
724 void
725 cmd_mini_delete_backward_char(struct buffer *buffer)
727 char *c, *p, *start;
729 GUARD_READ_ONLY();
731 minibuffer_taint_hist();
733 c = utf8_nth(buffer->current_line->line, buffer->cpoff);
734 start = buffer->current_line->line;
735 if (c == start)
736 return;
737 p = utf8_prev_cp(c-1, start);
739 memmove(p, c, strlen(c)+1);
740 buffer->cpoff--;
742 recompute_completions(0);
745 void
746 cmd_mini_kill_line(struct buffer *buffer)
748 char *c;
750 GUARD_READ_ONLY();
752 minibuffer_taint_hist();
753 c = utf8_nth(buffer->current_line->line, buffer->cpoff);
754 *c = '\0';
756 recompute_completions(0);
759 void
760 cmd_mini_abort(struct buffer *buffer)
762 if (!in_minibuffer)
763 return;
765 ministate.abortfn();
768 void
769 cmd_mini_complete_and_exit(struct buffer *buffer)
771 if (!in_minibuffer)
772 return;
774 minibuffer_taint_hist();
775 ministate.donefn();
778 void
779 cmd_mini_previous_history_element(struct buffer *buffer)
781 if (ministate.history == NULL) {
782 message("No history");
783 return;
786 if (ministate.hist_cur == NULL ||
787 (ministate.hist_cur = TAILQ_PREV(ministate.hist_cur, mhisthead, entries)) == NULL) {
788 ministate.hist_cur = TAILQ_LAST(&ministate.history->head, mhisthead);
789 ministate.hist_off = ministate.history->len - 1;
790 if (ministate.hist_cur == NULL)
791 message("No prev history item");
792 } else {
793 ministate.hist_off--;
796 if (ministate.hist_cur != NULL)
797 buffer->current_line->line = ministate.hist_cur->h;
800 void
801 cmd_mini_next_history_element(struct buffer *buffer)
803 if (ministate.history == NULL) {
804 message("No history");
805 return;
808 if (ministate.hist_cur == NULL ||
809 (ministate.hist_cur = TAILQ_NEXT(ministate.hist_cur, entries)) == NULL) {
810 ministate.hist_cur = TAILQ_FIRST(&ministate.history->head);
811 ministate.hist_off = 0;
812 if (ministate.hist_cur == NULL)
813 message("No next history item");
814 } else {
815 ministate.hist_off++;
818 if (ministate.hist_cur != NULL)
819 buffer->current_line->line = ministate.hist_cur->h;
822 void
823 cmd_previous_completion(struct buffer *buffer)
825 if (in_minibuffer != MB_COMPREAD)
826 return;
828 buffer = &ministate.compl.buffer;
830 if (buffer->current_line != NULL)
831 buffer->current_line->parent->type = LINE_COMPL;
833 forward_line(buffer, -1);
835 if (buffer->current_line != NULL)
836 buffer->current_line->parent->type = LINE_COMPL_CURRENT;
839 void
840 cmd_next_completion(struct buffer *buffer)
842 if (in_minibuffer != MB_COMPREAD)
843 return;
845 buffer = &ministate.compl.buffer;
847 if (buffer->current_line != NULL)
848 buffer->current_line->parent->type = LINE_COMPL;
850 forward_line(buffer, +1);
852 if (buffer->current_line != NULL)
853 buffer->current_line->parent->type = LINE_COMPL_CURRENT;
856 void
857 cmd_insert_current_candidate(struct buffer *buffer)
859 if (in_minibuffer != MB_COMPREAD)
860 return;
862 minibuffer_insert_current_candidate();
865 void
866 cmd_suspend_telescope(struct buffer *buffer)
868 message("Zzz...");
869 ui_suspend();
872 void
873 cmd_toggle_pre_wrap(struct buffer *buffer)
875 dont_wrap_pre = !dont_wrap_pre;
877 if (dont_wrap_pre)
878 message("Don't wrap preformatted blocks");
879 else
880 message("Wrap preformatted blocks");
882 ui_schedule_redraw();
885 void
886 cmd_mini_goto_beginning(struct buffer *buffer)
888 struct vline *vl;
890 if (!in_minibuffer)
891 return;
893 buffer = &ministate.compl.buffer;
895 if ((vl = buffer->current_line) != NULL)
896 vl->parent->type = LINE_COMPL;
898 vl = TAILQ_FIRST(&buffer->head);
899 while (vl != NULL && vl->parent->flags & L_HIDDEN)
900 vl = TAILQ_NEXT(vl, vlines);
902 if (vl == NULL)
903 return;
905 vl->parent->type = LINE_COMPL_CURRENT;
906 buffer->top_line = vl;
907 buffer->current_line = vl;
910 void
911 cmd_mini_goto_end(struct buffer *buffer)
913 struct vline *vl;
915 if (!in_minibuffer)
916 return;
918 buffer = &ministate.compl.buffer;
920 if ((vl = buffer->current_line) != NULL)
921 vl->parent->type = LINE_COMPL;
923 vl = TAILQ_LAST(&buffer->head, vhead);
924 while (vl != NULL && vl->parent->flags & L_HIDDEN)
925 vl = TAILQ_PREV(vl, vhead, vlines);
927 if (vl == NULL)
928 return;
930 vl->parent->type = LINE_COMPL_CURRENT;
931 buffer->current_line = vl;
934 void
935 cmd_other_window(struct buffer *buffer)
937 ui_other_window();
940 void
941 cmd_mini_scroll_up(struct buffer *buffer)
943 if (!in_minibuffer)
944 return;
946 buffer = &ministate.compl.buffer;
947 if (buffer->current_line == NULL)
948 return;
950 buffer->current_line->parent->type = LINE_COMPL;
951 cmd_scroll_up(buffer);
952 buffer->current_line->parent->type = LINE_COMPL_CURRENT;
955 void
956 cmd_mini_scroll_down(struct buffer *buffer)
958 if (!in_minibuffer)
959 return;
961 buffer = &ministate.compl.buffer;
962 if (buffer->current_line == NULL)
963 return;
965 buffer->current_line->parent->type = LINE_COMPL;
966 cmd_scroll_down(buffer);
967 buffer->current_line->parent->type = LINE_COMPL_CURRENT;
970 void
971 cmd_toggle_downloads(struct buffer *buffer)
973 ui_toggle_side_window(SIDE_WINDOW_BOTTOM);