Rebecca Turner
Rebecca Turner
**Describe the bug** Several Nix commands seem to ignore `Ctrl-C` for lengthy periods. I'm not sure exactly what conditions cause this, but I've seen it with `nix flake update`, `nix...
# Motivation The nested debugger behavior is extremely confusing as a user and challenging to maintain invariants for (see the disclaimers about its behavior we get to remove now). The...
# Motivation One of the biggest differences between command-line arguments and settings is that command-line arguments have _handlers,_ arbitrary functions that are run when the command-line argument is set, which...
Fixes #9941. Before: ``` $ echo builtins.nixVersion | nix repl Welcome to Nix 2.18.1. Type :? for help. Failed tcsetattr(TCSADRAIN): Inappropriate ioctl for device "2.18.1" Failed tcsetattr(TCSADRAIN): Inappropriate ioctl for...
Before: ``` 0: while evaluating the attribute 'python311.pythonForBuild.pkgs' 0x600001522598 ``` After: ``` 0: while evaluating the attribute 'python311.pythonForBuild.pkgs' /nix/store/hg65h51xnp74ikahns9hyf3py5mlbbqq-source/overrides/default.nix:132:27 131| 132| bootstrappingBase = pkgs.${self.python.pythonAttr}.pythonForBuild.pkgs; | ^ 133| in ```
**Is your feature request related to a problem? Please describe.** When an error is encountered and `--show-trace` hasn't been given, only the three outer-most stack frames are displayed. Often, these...
I assume the fish completions were created by copy/pasting `--help` output, and `--file` was mistakenly left in instead of being translated to `-l file` (that is, `--file` was passed to...
- input_go_word_left: alt-b - input_go_word_right: alt-f - line_down: ctrl-j - line_up: ctrl-k - panel_left_no_open: ctrl-h - panel_right_no_open: ctrl-l These don't conflict with any existing builtin shortcuts and users can override...
My editor is configured to format on save, which I have to disable in the `broot` repo to avoid making changes to parts of files I'm not modifying. It would...
In my `conf.toml`, I have an `edit` verb defined to open files in Neovim: ```toml [[verbs]] key = "enter" invocation = "edit" shortcut = "e" apply_to = "file" external =...