Zack Weinberg
Zack Weinberg
This is an updated version of PR #2548. I am filing it like this because I was not able to figure out how to file it any other way; it...
Consider this test Markdown fragment... ```markdown * outline item 1 + with sublist * outline item 2 + with sublist ``` Mistletoe 1.4.0 compiles this to the following HTML (manually...
Currently there's only one place where cargo-llvm-cov might ask the user a question (installing `llvm-tools-preview`), and this can be suppressed with the `CARGO_LLVM_COV_SETUP` environment variable, but that variable is specific...
`ask_to_run` is asking the user a question, therefore it should read and writing from `/dev/tty` rather than stdin/stdout, which may be redirected. If opening `/dev/tty` fails, that should trigger `--noninteractive`...
I would like to be able to define a command that takes two arguments, of which the _first_ is optional, like this: ```python import click @click.command() @click.argument("foo", required=False) @click.argument("bar", required=True)...
I suggest that there should be a pair of attributes in `config.sops` that give the base pathnames of the secrets directories, something like ```nix config.sops = { secretsDir = /run/secrets;...