Peter Rice
Peter Rice
I can't reproduce either, on OSX or NixOS. Do you have `programs.man.generateCaches` enabled? That fixed the issues I was having with man completions.
Profile creation commands will accept at least `--no-icon` and `--icon-url URL`. There will be a new icon subcommand: `qbpm icon PROFILE ICON-URL`.
Actually, this could possibly be considered a bug in hackney itself. I'll send a PR upstream and see how it turns out. edit: https://github.com/benoitc/hackney/pull/750. It is a bug in hackney...
When we pass in an iolist hackney does the `iolist_to_binary` conversion itself, so I believe the net performance is the same. I'll confirm that and cite the specific code involved...
With an iolist request body we get to [this case statement](https://github.com/benoitc/hackney/blob/1.20.1/src/hackney_request.erl#L322) in hackney_request.erl which [handles iolists](https://github.com/benoitc/hackney/blob/1.20.1/src/hackney_request.erl#L351-L357) with: ```erlang _ when is_list(Body0) -> % iolist case Body1 = iolist_to_binary(Body0), S =...
Depends on https://github.com/nix-community/home-manager/pull/5705 (or https://github.com/NixOS/nixpkgs/issues/198655). The current KDL code can't generate some parts of the config file: ```kdl spawn-at-startup "mako" spawn-at-startup "yambar" preset-column-widths { proportion 0.33333 proportion 0.5 proportion 0.66667...