-
Using custom colors in the prompt adds dead space at the end of it. This occurs anytime you pass a string with ANSI escape characters in it, and seems to be roughly the length of the escape characters…
-
For example, when you run:
```console
nimble install nonexistent
````
the following message should appear:
```
Prompt: nonexistent not found in any local packages.json, check internet for u…
-
My workaround for https://github.com/nim-lang/Nim/issues/9365 relied on stable Nim->C symbols and needed to be updated after https://github.com/nim-lang/Nim/pull/11985.
I would use {.exportc.} in t…
-
[VM/ast] make sure all left-right checking are not Newlines
https://github.com/arturo-lang/arturo/blob/ed0410b81b479dcf090b239e2193a45ecf65cd5d/src/vm/ast.nim#L21
```text
# TODO(VM/ast) show warnin…
-
* `type Foo[T: static] = object` doesn't work but should; EDIT: it should work like `type Foo[T: static type] = object` which does work
* `type Foo[T] = object` is buggy when instantiated with static…
-
[VM/ast] show warning in case `else` is preceded by `if` - and not `if?`
https://github.com/arturo-lang/arturo/blob/ed0410b81b479dcf090b239e2193a45ecf65cd5d/src/vm/ast.nim#L18
```text
## The main en…
-
## bugs
- [x] `do:` renders badly => https://github.com/nim-lang/Nim/pull/17623 and https://github.com/nim-lang/Nim/pull/17449
- [x] bug 2: `(discard)` renders badly => https://github.com/nim-lang/N…
-
Using toSeq in map causes and internal error
### Example
```nim
import strutils, sequtils
var data = "aaa aaa"
echo data.split(" ").map(toSeq)
```
### Current Output
```
Error: internal e…
-
Sorry for the long repro code, it's quite tricky to extract it from my codebase and keep the issue reproducible as 3 differents procs/statements need to be present
This is a follow-up on my Go play…
-
I was installing nimlangserver with nimble and noticed that it always downloaded the Nim compiler, compiled csource, koch, compiler, tools... an unnecessary and slow process for those who have the com…