summary refs log tree commit diff stats
path: root/compiler/suggest.nim
Commit message (Expand)AuthorAgeFilesLines
* changed from parseEnum to direct copySimon Hafner2015-05-131-5/+1
* removed unnecessary depsSimon Hafner2015-05-081-2/+1
* removed a few consts and rewired to IdeCmdSimon Hafner2015-04-261-16/+11
* barebones in nimsuggest for EPCSimon Hafner2015-04-221-11/+12
* parseEnum ftwSimon Hafner2015-04-221-40/+4
* rewrite suggest.nim for suggestionResultHookSimon Hafner2015-04-221-39/+106
* removed dead codeAraq2015-01-301-9/+2
* nimsuggest improvementsAraq2015-01-301-13/+17
* nimsuggest: sane dirty buffer handlingAraq2015-01-291-5/+1
* nimsuggest: first versionAraq2015-01-271-111/+86
* fixes #1774Araq2014-12-311-3/+0
* improvements for nimfixAraq2014-09-101-2/+1
* 'pretty' command does not exist anymore; improvements for nimfixAraq2014-09-101-1/+1
* Nimrod renamed to NimAraq2014-08-281-1/+1
* fixes #1285Araq2014-06-301-19/+19
* Fix idetools --def crash.Dominik Picheta2014-06-151-1/+1
* Fixed #1172 (for real)Clay Sweetser2014-06-011-2/+5
* Avoids idetools crash on nil parameters.Grzegorz Adam Hankiewicz2014-04-151-0/+1
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
* Merge branch 'upstream' into develZahary Karadjov2013-12-291-1/+1
|\
| * make the current PContext accessible through TCandidateZahary Karadjov2013-12-251-1/+1
* | case consistency: cs:partial bootstraps on windowsAraq2013-12-291-4/+4
* | case consistency: next stepsAraq2013-12-291-2/+2
* | improvements for 'pretty'Araq2013-12-281-1/+2
* | case consistency part 4Araq2013-12-271-17/+17
* | case consistency part 1Araq2013-12-271-2/+2
|/
* Take into account dirty buffers in suggest output; Fixes zah/nimrod.vim#14Zahary Karadjov2013-08-071-2/+8
* fixes token's column informationAraq2013-07-301-3/+1
* 'modules' module from 'main'; minor bugfixesAraq2013-07-201-1/+2
* Order suggestion output by scope and then by item name.Thomas Kinnen2013-07-011-2/+5
* another attempt to implement #448Araq2013-05-311-10/+7
* implements #448Araq2013-05-261-3/+10
* final fixes giving us a working compilerZahary Karadjov2013-05-121-2/+2
* get rid of ImportTablePos and ModuleTablePosZahary Karadjov2013-05-121-7/+12
* handle invalid data in --defZahary Karadjov2013-05-051-2/+5
* experimental support for answering idetools --def requests fromZahary Karadjov2013-05-041-1/+57
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* implements #295Araq2013-01-081-1/+3
* cas improvementsAraq2012-10-241-0/+2
* syntax compatibility between do blocks and stmt blocksZahary Karadjov2012-10-041-2/+1
* next steps for 'compiler as a service'Araq2012-10-031-7/+2
* first steps for compiler as a serviceAraq2012-10-031-8/+13
* distinguish properly between nkOpen and nkClosedSymChoiceAraq2012-08-261-1/+1
* first steps to make templates hygienicAraq2012-08-201-3/+7
* make idetools output full pathsAraq2012-08-051-1/+1
* idetools: 'usages' and 'def' should work now; documented js backendAraq2012-08-051-23/+46
* idetools: don't suggest module names or not visible object fieldsAraq2012-08-031-14/+19
* idetools improvements (2)Araq2012-08-031-0/+1
* idetools improvements; preparation of first class iterators; fixes #183Araq2012-08-021-1/+0
* made compiler more robust for idetools; implemented idetools.usagesAraq2012-07-301-7/+26
'>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