about summary refs log tree commit diff stats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Merge branch 'master' into readlineJames Booth2015-02-063-5/+2
|\| | |
| * | | Removed strdup passed to autocompleterJames Booth2015-02-061-1/+1
| * | | Removed duplicate time_acJames Booth2015-02-061-4/+0
| * | | Free win layoutJames Booth2015-02-061-0/+1
| | |/ | |/|
* | | Handle home scrollJames Booth2015-02-061-2/+3
* | | Removed unused functionJames Booth2015-02-062-8/+0
* | | Removed debug loggingJames Booth2015-02-051-2/+0
* | | Moved command processing to main loop, allow resize during password promptJames Booth2015-02-055-26/+51
* | | Move SIGWINCH handling to ui/core.c, ignore signal whilst resizingJames Booth2015-02-044-9/+17
* | | Removed unused functions from inputwin.cJames Booth2015-02-041-4/+0
* | | Fixed input timout returning EINVAL on OSXJames Booth2015-02-041-5/+18
* | | Moved readline startup hookJames Booth2015-02-031-44/+44
* | | Tidied inputwin.cJames Booth2015-02-031-287/+315
* | | Updated navigation helpJames Booth2015-02-031-20/+3
* | | Added OSX readline keyseq bindingsJames Booth2015-02-031-4/+9
* | | Removed mbstate_t useJames Booth2015-02-031-2/+1
* | | Remove state passed to wide char len checkJames Booth2015-02-031-21/+19
* | | Fixed arrow keys with debugJames Booth2015-02-022-7/+3
* | | Readline osx compatibilityJames Booth2015-02-022-8/+14
* | | Added include for timeval structJames Booth2015-02-011-0/+1
* | | Merge branch 'master' into readlineJames Booth2015-02-015-6/+10
|\| |
| * | Updated /wrap helpJames Booth2015-01-281-1/+1
| * | Renamed command group presence->presences to avoid clashJames Booth2015-01-284-4/+4
| * | Strip only trailing newline from eval_passwordJames Booth2015-01-281-1/+4
| * | Strip leading/trailing whitespace from result of eval_passwordJames Booth2015-01-281-0/+1
| * | Fixed compile error when no OTR supportJames Booth2015-01-281-1/+1
* | | Use getc wrapper for autocomplete reset checkJames Booth2015-02-011-15/+22
* | | Added more ignore characters to handle activityJames Booth2015-02-011-1/+1
* | | Handle word wrapping wide charsJames Booth2015-02-012-14/+33
* | | Added scroll handlerJames Booth2015-01-311-0/+22
* | | Removed commented code, renamed win switch handlersJames Booth2015-01-312-53/+31
* | | Added function key bindingsJames Booth2015-01-311-0/+11
* | | Added paging handlersJames Booth2015-01-315-69/+279
* | | Added SIGWINCH handlerJames Booth2015-01-312-3/+18
* | | Clear autocompleters on printable charsJames Booth2015-01-311-2/+19
* | | Added readline tab handlerJames Booth2015-01-311-1/+28
* | | Moved input blocking code to inputwin.cJames Booth2015-01-314-35/+34
* | | Debug input blockJames Booth2015-01-312-3/+5
* | | Added idle and activity handlersJames Booth2015-01-312-10/+17
* | | Removed unused variablesJames Booth2015-01-301-23/+0
* | | Removed commented codeJames Booth2015-01-301-216/+0
* | | Removed history and various key handlersJames Booth2015-01-307-1239/+205
* | | Moved readline code to inputwin.cJames Booth2015-01-305-100/+112
* | | Added gnu readlineJames Booth2015-01-277-59/+149
* | | Added key insert tests, extracted key_ctrl_left handlerJames Booth2015-01-203-83/+77
* | | Extracted keyhandler for printable charactersJames Booth2015-01-205-91/+211
* | | Inlined static functions in inputwinJames Booth2015-01-192-50/+162
* | | Refactor inputwin.cJames Booth2015-01-183-101/+139
* | | Handle wide chars for arrow keys and backspaceJames Booth2015-01-181-152/+200
* | | Fix backspace for utf8 wide charsJames Booth2015-01-171-19/+11
|/ /
n613'>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