Rebecca Turner
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...
## 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`...
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...
## 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"...
``` 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...
### Description `nixfmt` errors when a carriage return is used as a linebreak in a comment. ### Small example input ```nix { x = #^M1; } ``` (Where `^M` is...
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; }...