summary refs log tree commit diff stats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup heapqueue module (#10476)Oscar Nihlgård2019-01-281-1/+1
|
* add git diff hints to help with reviews (#10435)Timothee Cour2019-01-281-0/+20
|
* Fix example in manual for line pragma (#10468)Neelesh Chandola2019-01-271-1/+1
|
* Increase verbosity of logGC (#10449)Matt Haggard2019-01-261-0/+1
| | | | | | * Increase verbosity of logGC * Remove & c.repr to avoid re-entering the GC
* Add "cmd" description, minor improvements (#10436)Federico Ceratto2019-01-251-2/+3
|
* docs: fix trailing comma in linksnarimiran2019-01-251-1/+1
|
* fix #10287 (#10448)Miran2019-01-252-1/+6
| | | | | | The only thing separating these two files (which wrongly appear on index.html as modules) and the rest of the (correctly placed) documents was the style of the title :D
* include missing modules in `lib.rst`narimiran2019-01-241-5/+33
|
* Add koch run example (#10434)Federico Ceratto2019-01-241-1/+8
|
* Add packaging guide #5182 (#10384)Federico Ceratto2019-01-231-0/+68
|
* Added --docInternal option to allow 'nim doc' to include non-exported symbolsIco Doornekamp2019-01-231-0/+1
|
* compiler interface: don't overdocument the on|off switchesAraq2019-01-222-3/+4
|
* fix #9629 every binary cmd line option allows on/off/empty=on (#10353)Timothee Cour2019-01-182-17/+17
| | | | | | * fix #9629 every binary cmd line option allows on/off/empty=on * workaround refs #10359
* properly fix #10030 by skipping all external configs (#10324)Timothee Cour2019-01-161-1/+1
|
* fix #10305 nim cpp is now nan-correct at CT (#10310)Timothee Cour2019-01-151-0/+3
| | | | | * fix #10305 nim cpp is now nan-correct at CT * add example where simply `nim cpp -d:release` would exhibit nan bug
* lib.rst: fix a typo (#10308) [ci skip]Jjp1372019-01-151-1/+1
|
* setCommand nop update documentation (#10254)Strømberg2019-01-131-11/+0
| | | When I used Warning: Using `setCommand 'nop'` is not necessary.
* make the stdlib work with the changed docgenAraq2019-01-111-1/+1
|
* revert moving `oids` and `smtp` to graveyardnarimiran2019-01-111-0/+9
|
* Added 'Limitations' section to nimscript manual listing the restrictions of ↵Ico Doornekamp2019-01-101-3/+22
| | | | the VM (#10209)
* remove `oids`narimiran2019-01-101-6/+0
|
* remove `smtp`narimiran2019-01-101-3/+0
|
* remove `scgi`narimiran2019-01-101-3/+0
|
* remove `subexes`narimiran2019-01-101-3/+0
|
* remove float128 from the manual, fixes #10213 [ci skip]narimiran2019-01-091-1/+0
|
* add custom pragma support for var and let symbols (#9582)jcosborn2019-01-071-0/+1
| | | | | | * add custom pragma support for var and let symbols * updated changelog for custom pragmas on var and let symbols * add oldast switch for backwards compatibility
* remove deprecated modules (#10215)Miran2019-01-071-12/+2
| | | | | | | | | | | | | | | | | | * removed from `compiler`: * lists (deprecated 2 years ago) * removed from `lib` (all deprecated 3 years ago): * ssl * matchers * httpserver * removed from `lib/deprecated`: * unsigned * actors (and three accompanying tests) * parseurl * moved to `lib/deprecated`: * securehash (the reason for not directly removing - it was deprecated (only) one year ago)
* Minor Fixes to Manual Wording (#10214)Tristano Ajmone2019-01-061-3/+3
|
* Fix Typo in Compiler Guide (#10189)Tristano Ajmone2019-01-041-1/+1
| | | Change 'ableit' to 'albeit'.
* Undocument --genmapping (#10175)Neelesh Chandola2019-01-041-2/+0
|
* Add link to tutorial part III to docs.rst (#10157) [ci skip]Ico Doornekamp2019-01-011-0/+3
|
* Deprecate gc v2 (#10151)Neelesh Chandola2019-01-011-1/+1
| | | | | | * Deprecate gc v2 * warnDeprecated now has custom messages
* document --profiler:on (#10115)Timothee Cour2018-12-301-0/+3
|
* document NIM_EXTERNC for `emit` (#10022)Timothee Cour2018-12-181-0/+11
|
* move diff.nim to experimentalAraq2018-12-121-1/+1
|
* added diff.nim to the stdlibAraq2018-12-121-0/+4
|
* advopt.txt: minor layouting changeAraq2018-12-121-1/+1
|
* minor cleanupsAndreas Rumpf2018-12-112-11/+2
|
* Merge pull request #9916 from timotheecour/pr_ref_9906_errorMaxAndreas Rumpf2018-12-111-0/+1
|\ | | | | refs #9906; --errorMax:10 allows stopping after 10 errors (more robust than nim check)
| * --errorMax:0 means: unlimitedTimothee Cour2018-12-091-1/+1
| |
| * refs #9906; --errorMax:10 allows stopping after 10 errorsTimothee Cour2018-12-091-0/+1
| |
* | enhance `dump --dump.format:json`Timothee Cour2018-12-091-0/+1
|/
* Merge pull request #9813 from yyyc514/fix_outdated_invoke_exampleDominik Picheta2018-11-271-1/+1
|\ | | | | fix outdated example to invoke Nim from C
| * fix outdated example to invoke Nim from CJosh Goebel2018-11-271-1/+1
| | | | | | | | - resolves #8139
* | new minor language feature: .noSideEffect blocks like .gcsafe blocksAndreas Rumpf2018-11-271-0/+10
| |
* | tut3: improved the wordingAraq2018-11-211-34/+41
| |
* | added a new macro tutorial (#9588)Arne Döring2018-11-212-394/+355
| |
* | document the --incremental build switch; make CIs green againAraq2018-11-211-0/+1
| |
* | Fixes #9671 (#9750)Randy Smith2018-11-193-6/+6
| |
* | fix manual entry for .this pragma [ci skip]narimiran2018-11-181-5/+2
| |