about summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
* pager: remove useless codebptato2024-03-182-16/+1
* config: clean up/simplifybptato2024-03-1710-330/+349
* Move SIGCHLD ignore call to forkserverbptato2024-03-172-4/+1
* forkserver: set process titles for processesbptato2024-03-172-0/+42
* main: ignore SIGCHLDbptato2024-03-171-0/+4
* man: better error handlingbptato2024-03-171-35/+89
* client: fix "Hit any key" bug on load failurebptato2024-03-173-21/+45
* pager: fix buffer filteringbptato2024-03-171-2/+4
* io: add BuferedWriterbptato2024-03-168-207/+310
* client, pager: various file saving fixesbptato2024-03-163-18/+22
* pager: fix disappearing buffers when reload failsbptato2024-03-161-9/+8
* container: fall back to text/plain instead of application/octet-streambptato2024-03-162-3/+5
* Update docsbptato2024-03-161-3/+0
* pager: simplify line editingbptato2024-03-162-64/+69
* pager, loader: add "Save file to" functionalitybptato2024-03-165-39/+138
* layout: table column size fixesbptato2024-03-161-33/+20
* loader: add missing flush() callsbptato2024-03-161-1/+4
* trans.cgi: set content type to text/x-ansibptato2024-03-161-2/+2
* cgi: fix libexec dir not being setbptato2024-03-161-3/+4
* config: add start.console-buffer optionbptato2024-03-165-3/+16
* data: content type fixesbptato2024-03-151-7/+5
* man: improve header/footer conversionbptato2024-03-151-4/+11
* man: work around parameter insanitybptato2024-03-152-9/+32
* config.toml: fix sE bindingbptato2024-03-151-1/+1
* container: cursor x fixesbptato2024-03-151-2/+4
* Clean up BufferConfigbptato2024-03-156-81/+73
* version: print error message on a single linebptato2024-03-141-4/+3
* client: check if container was found before deleting itbptato2024-03-141-2/+2
* pager: unregister containers properly when headers are pendingbptato2024-03-143-14/+33
* loader: handle connections where pid/key does not matchbptato2024-03-141-1/+8
* cgi: fix broken pipe handlingbptato2024-03-141-1/+8
* Move around some modulesbptato2024-03-1421-96/+88
* pager: add "open in editor" keybinding (sE)bptato2024-03-149-77/+103
* loader: only trap SIGTERMbptato2024-03-141-1/+1
* man: misc improvementsbptato2024-03-142-62/+74
* loader: fix crash on malformed CGI headersbptato2024-03-142-3/+2
* twtstr: fix deleteChars, do not remove space in replaceControlsbptato2024-03-142-11/+7
* doc: revert capitalization changebptato2024-03-141-1/+1
* pager: use loadinfo for redirection message, not alertbptato2024-03-131-1/+2
* twtstr: simplify control char procsbptato2024-03-131-24/+7
* layout: remove word-spacingbptato2024-03-131-4/+1
* Prevent UB on memcpy and floating point conversionsCharlie Gordon2024-03-135-18/+26
* Improve Date.parseCharlie Gordon2024-03-131-31/+106
* rudimentary support for <video>, <audio>bptato2024-03-137-10/+66
* man: rewrite in Nimbptato2024-03-1310-312/+349
* loader: fix nil deref in parseHeadersbptato2024-03-131-1/+1
* client: fix blocking reads on container connectionbptato2024-03-125-72/+123
* mancha: only set man as section without other parametersbptato2024-03-121-1/+2
* loader: remove applyHeadersbptato2024-03-1210-134/+112
* md2html: convert <https://example.org> to anchorbptato2024-03-121-1/+32
519' href='#n519'>519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965