Ryan Saxe
Ryan Saxe
### Did you check docs and existing issues? - [x] I have read all the tokyonight.nvim docs - [x] I have updated the plugin to the latest version before submitting...
### Required prerequisites - [x] I have read the documentation . - [x] I have searched the [Issue Tracker](https://github.com/metaopt/optree/issues) that this hasn't already been reported. (comment there if it has.)...
### Did you check the docs? - [x] I have read all the snacks.nvim docs ### Is your feature request related to a problem? Please describe. I really prefer to...
### Description I am currently using diffview to get a good view of a PR. So I usually open `DiffViewOpen main..HEAD` when I do, I see no diagnostics at all....
### Preflight Checklist - [x] I have searched [existing requests](https://github.com/anthropics/claude-code/issues?q=is%3Aissue%20label%3Aenhancement) and this feature hasn't been requested yet - [x] This is a single feature request (not multiple features) ### Problem...
A variety of keras ops have paths that return objects of type `OpenVINOKerasTensor`. For example ```python import keras.ops as ops from typing import reveal_type result = keras.ops.concatenate(...) reveal_type(result) # OpenVINOKerasTensor...
### Summary There are no completions for the key values when the type is a TypedDict. I have confirmed that this does not happen on the playground as well as...
### Summary TypeVars do not seem to be properly handled inside TypedDicts ```python from typing import TypedDict, reveal_type class TestDictExample[T](TypedDict): id: int name: str active: bool bug: T class Example[T]:...