Results 42 issues of Andrej Kolčin

### Related problem Currently, you can't use `$in` in `const` pipelines. ### Describe the solution you'd like Only throwing the error if `$in` is used during the first element (`const...

enhancement
needs-triage
const-eval

### Related problem I wanted to use `to nuon` in a const test, but it errored out. Turns out none of the `to` commands can run at parse-time. ### Describe...

enhancement
needs-triage
const-eval

Currently you can't tab complete operators like `starts-with` and `bit-or`. I think it'd be nice if it was possible to have a context-aware completion for them.

enhancement
completions

### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [x] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Rust Version rustc 1.80.0 (051478957 2024-07-21)...

C-enhancement
A-completion

### Related problem [Bubblewrap] uses file descriptors to safely pass security rules to arguments: https://github.com/containers/bubblewrap/blob/main/demos/bubblewrap-shell.sh#L30-L34 Nushell currently doesn't support creating arbitrary file descriptors [Bubblewrap]: https://github.com/containers/bubblewrap ### Describe the solution you'd...

enhancement
file-system
needs-triage
POSIX-expectations

### Describe the bug There is an inconsistency in how `str join` and `into string` convert dates. The prior does RFC conversion, while the latter converts into human readable formats....

inconsistent-behavior
needs-triage
datetime-handling

I'm packaging Nushell 0.105 for Alpine right now, and ppc64le is one of the supported architectures. Nushell's `cp`, which uses `uu_cp` underneath, failed the tests because of a panic: ```...

U - cp
good first issue

#### Problem Description I have a package with several nested modules. I wanted to refer to them by their names, without prefixing the package name, so I used a `[nested](module.nested)`...

bug

The JavaScript parser treats reference links which have markup differently. Namely, it strips the markup backtick characters. ```djot A [`link`][] reference with backticks. [`link`]: https://example.org ``` Generates a warning (`Reference...

Python supports unpacking all objects which support the `Sequence` protocol. I believe it does so by simply calling `__getitem__` for consecutive integer indices. Currently in PyO3 only tuple objects can...