Hugo

Results 1333 comments of Hugo

I get the same exception with v0.14.0. ```console > cd python-barcode > mkvirtualenv python-barcode > pip install -e '.[images]' > cat test.py from __future__ import annotations import barcode from barcode.writer...

- pillow-9.5.0 works - pillow-10.0.0 doesn't I don't see anything specific in the changelog: https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html The documentation for the function that we're using doesn't specify if `font_size=0` is valid: https://pillow.readthedocs.io/en/stable/reference/ImageFont.html#PIL.ImageFont.truetype...

> I tried adding the "guardbars" keywords but it seems the UPC class doesn't accept that argument. Indeed, it's not implemented for that class. Patches welcome. > Added "F" at...

> It would also make sense to provide a wrapper function around CharacteristicWriteMethod::Fun and similar types that perform the boxing of the specified closure, i.e. Box::new(move |...| { async move...

You need to configure GTK3 to switch to a dark theme when your environment switches to dark mode. I do so with darkman, which runs [this script](https://gitlab.com/WhyNotHugo/darkman/-/blob/main/examples/dark-mode.d/gtk-theme.sh?ref_type=heads) when switching to...

You can use `:CargoReload` to work around this (it tells ~~cargo~~ rust-analyzer to reload).

Oh `:CargoReload` sends a custom `rust-analyzer` request called `rust-analyzer/reloadWorkspace`. See `reload_workspace` in https://github.com/neovim/nvim-lspconfig/blob/f7922e59aeb9bc3e31a660ea4e7405ffa3fc2c3a/lua/lspconfig/server_configurations/rust_analyzer.lua

I think that neovim only notifies when there is a change in files that are open. A git checkout will affect files no open by neovim, so it won't notify...

@xxchan Does this actually work for you when using `rust-analyzer` without `ra-multiplex`?