Michael Joseph Rosenthal
Michael Joseph Rosenthal
In which context are you trying to format the file? You likely need to install it in the right virtual environment to be picked up in your editor. If you're...
Shouldn't the query be updated automatically if its data in the cache is updated, because it's observable?
I needed to animate `shadowOffset`, so I added/published a fix for this to [`@micimize/react-native-animatable`](https://github.com/micimize/react-native-animatable) for anyone in urgent need of this functionality. The implementation is a bit inelegant, and there...
IMO the main benefit for adding this feature to `isort` rather than leaving it to external libraries would be `--diff` support. For example, https://github.com/microsoft/vscode-python uses `isort --diff` for import organization....
For reproduction, I got this pretty consistently initially because I had a keybinding collision using ctrl+n/p for navigation: ```json5 { "command": "-vscode-neovim.send", "key": "ctrl+p", // "when": "neovim.mode != cmdline_normal" },...
Cross posting my thinking on this from https://github.com/vscode-neovim/vscode-neovim/issues/288#issuecomment-1369152225, layout-wise: > I think a really good approach to multiple buffers (#505) might lead to the most optimal, fully-featured command buffer. Maybe...
@J-Fields how far is this from merge-able? No promises (None, really) but I may have time to help if we know what needs to be done. It seems to be...
Different question – mystmd and myst-parser docs differ in places (https://mystmd.org/guide/code#numbering-and-highlighting vs https://myst-parser.readthedocs.io/en/latest/syntax/code_and_apis.html#adding-a-caption) . I was hoping these would be consistent flavors I could use across notebooks, frontend apps, etc....
@rowanc1 thanks, that makes sense! Sorry, I overloaded this issue but my primary question was what I should now use for `parse_myst_to_html` for a use-case like `display(HTML(parse_myst_to_html(markdown)))`
It might also be good to better document / message that `kw_only` can be used to address this use case: ```python # kw default in parent @attr.s(auto_attribs=True, hash=True, collect_by_mro=True) class...