summary refs log tree commit diff stats
path: root/compiler/nimconf.nim
Commit message (Expand)AuthorAgeFilesLines
* compiler refactoring; use typesafe path handing; docgen: render symbols betwe...Andreas Rumpf2018-09-071-16/+16
* make config.nims behave like nim.cfg in terms of where these scripts are sear...Timothee Cour2018-08-301-3/+4
* fixes #8739; allow --hint:foo:on --warning:bar:off (#8757)Timothee Cour2018-08-251-1/+1
* Look for user nim.cfg in "nim/" subdir in usual config dir locations (#8662)Kaushal Modi2018-08-171-1/+1
* fixes #8653Andreas Rumpf2018-08-161-2/+2
* fixex merge conflictsAraq2018-06-081-7/+18
|\
| * Wait until the end to print hint Conf (#7931)WhiteDuke2018-06-041-7/+18
* | refactoring: make projectMainIdx typesafeAndreas Rumpf2018-05-271-4/+0
* | remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
|/
* documentation generator works againAndreas Rumpf2018-05-151-1/+1
* options.nim: no global variables anymoreAndreas Rumpf2018-05-131-18/+18
* move more global variables into ConfigRefAndreas Rumpf2018-05-111-5/+5
* avoid more global variablesAndreas Rumpf2018-05-111-2/+2
* big refactoring: parser compiles againAndreas Rumpf2018-05-101-50/+55
* compiler refactoring, pass config around explicitlyAndreas Rumpf2018-05-051-1/+1
* remove obsolete nimrod.cfg configuration filesAndreas Rumpf2018-04-241-4/+0
* fixes #499Andreas Rumpf2017-07-221-1/+1
* refactoring: explict config state instead of globalsAndreas Rumpf2017-02-011-53/+53
* make tests green againAraq2016-11-011-1/+1
* big refactoring: step 1Araq2016-10-311-11/+15
* improvements for NimScript supportAraq2015-09-031-57/+49
* Introduce NotesVerbosity defining verbosity levelsAdam Strzelecki2015-07-031-1/+1
* Merge pull request #2058 from def-/nimrod-cfgsAndreas Rumpf2015-02-071-5/+10
|\
| * Add support for nimcfg and warning for nimrod.cfgdef2015-02-041-3/+8
| * Typosdef2015-02-041-2/+2
* | configuration system supports %= to access environment variablesAraq2015-02-071-9/+15
|/
* the codegen doesn't emit deepCopy for parallel statementsAraq2014-11-081-3/+5
* renamed babelcmd to nimblecmd; config files are now nim.cfg; other renamingsAraq2014-08-291-4/+5
* Nimrod renamed to NimAraq2014-08-281-2/+2
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-3/+3
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-3/+3
* case consistency: next stepsAraq2013-12-291-1/+1
* case consistency part 4Araq2013-12-271-7/+7
* case consistency part 2Araq2013-12-271-1/+1
* case consistency part 1Araq2013-12-271-1/+1
* Updated cfg file processingErik O'Leary2013-12-021-5/+0
* fixes #459Araq2013-08-311-2/+5
* fixes token's column informationAraq2013-07-301-2/+2
* next steps for the new parser/grammarAraq2013-04-201-1/+1
* first steps to the new parser/grammarAraq2013-04-191-1/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* caas is now drivable through stdinZahary Karadjov2012-11-281-9/+10
* first steps to make templates hygienicAraq2012-08-201-20/+22
* project wide configuration file now with suffix '.nimrod.cfg'Araq2012-01-151-1/+4
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* cleaned up configuration file handling and documented the new behaviourAraq2011-11-301-10/+19
* further steps to get rid of deprecated endOfFile and readLineAraq2011-11-291-2/+2
* New algorithm for locating and loading nimrod config files.Zahary Karadjov2011-11-251-18/+20
* lexer, parser cleanup; boehm gc for mac os xAraq2011-05-171-19/+19
* got rid of some arcane module namesAraq2011-04-211-1/+1
id='n593' href='#n593'>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