summary refs log tree commit diff stats
path: root/compiler/suggest.nim
Commit message (Expand)AuthorAgeFilesLines
* 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
* made compiler more robust for idetools supportAraq2012-07-301-2/+3
* improvements for idetools; system.compiles improvedAraq2012-07-291-30/+43
* bootstraps fine with overloadable templatesZahary Karadjov2012-03-141-9/+7
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* bugfix: suggest featureAraq2011-12-221-14/+13
* attempt to improve 'suggest' featureAraq2011-07-301-4/+7
* got rid of some arcane module namesAraq2011-04-211-2/+3
* big repo cleanupAraq2011-04-121-0/+236
n452'>452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 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