Rebecca Turner

Results 189 issues of Rebecca Turner

Allow printing the root path (the top line in the tree view) as relative to the directory `broot` is launched in. This is supported in the usual manners: - As...

When searching file content with `c/...`, I can open the preview pane and then cycle through matches, but I only get the exact line that matched. I'd really like to...

enhancement

## Clap Version 4.3.19 ## Describe your use case I'm implementing `TypedValueParser` and `ValueParserFactory` so that I can use `clap` to parse custom types, ideally without explicitly annotating the `value_parser`...

C-enhancement
A-builder
E-easy

I recently encountered this error attempting to build a derivation: ``` error: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:9:12: (source not available) … while evaluating derivation 'infra-shell' whose name...

8.has: package (new)
10.rebuild-darwin: 1-10
10.rebuild-linux: 0
6.topic: stdenv
10.rebuild-darwin: 1

## Observations [diataxis.fr](https://diataxis.fr/) describes how-to guides as: - Practical steps - That serve our work in Nix (rather than our study of Nix) - That are task-oriented The "Best practices"...

site

``` cabal2nix: nix-prefetch-url: createProcess: posix_spawnp: illegal operation (Inappropriate ioctl for device) ``` No repro yet. M1 macOS.

``` // $VF: Couldn't be decompiled // Please report this to the Vineflower issue tracker, at https://github.com/Vineflower/vineflower/issues with a copy of the class file (if you have the rights to...

bug
needs-info

### Description `nixfmt` errors when a carriage return is used as a linebreak in a comment. ### Small example input ```nix { x = #^M1; } ``` (Where `^M` is...

bug

When run without any arguments and STDIN is a TTY, `nixfmt` should behave like `nixfmt .`, and discover all `.nix` files recursively.

With this code: ```nix let config = { host = "host"; user = "user"; port = 22; }; in { host = config.host; user = config.user; port = config.port; }...