Pascal Bachor

Results 12 issues of Pascal Bachor

### Describe the bug When defining a custom command, an argument of type `closure` cannot take a default value. Nu reports a `nu::parser::non_constant_default_value` error. ### How to reproduce ```nushell >...

enhancement
type-system
semantics
const-eval

In a single PR to avoid conflicts. If need be I can isolate individual patches. Includes https://github.com/telekom/lazy-imports/pull/17 (this patch is not compatible with Python 3.7).

It would be great if providers other than Github (Gitlab, Gitea, etc.) were supported such that one could manage all repositories in one place. I understand that this extension is...

Superseeds https://github.com/OpenAPITools/openapi-generator/pull/19575, resolves https://github.com/OpenAPITools/openapi-generator/issues/20375. I applied the following logic to adjust our templates to jmustache's changed semantics. ```python import re from pathlib import Path for file in filter( lambda p:...

##### SUMMARY `controller-manager`'s `seccompProfile` should be set as `type: RuntimeDefault`. This has previously been avoided because of compatibility issues with platforms that have now long reached EOL. ##### ISSUE TYPE...

community

It would be great to allow for instance-level Gitea runners.

The following grammar erroneously accepts `! x`. ```js grammar({ name: "x", word: ($) => $.word, rules: { x: (_) => seq("!", token.immediate("x")), word: (_) => /[a-z]+/, }, }) ``` Using...

parser-generation

The following grammar unexpectedly accepts the string ` x` (`x` with leading whitespace). ```js grammar({ name: "x", extras: ($) => [/\s/], rules: { x: ($) => seq(token.immediate("x"), optional(/\s/)), }, })...

parser-generation