DetachHead

Results 933 comments of DetachHead

i'm not familiar with either quarto or jupyter so i can't make any promises but i'd probably prioritize jupyter support first since it's already supported in pylance and is currently...

as far as i'm aware there's nothing in the language server protocol to support these features, so if i were to attempt to implement them then it would be exclusive...

i guess whatever special casing pyright does to support this legacy behavior doesn't work properly with `reportUnnecessaryIsInstance`. tbh i would consider fixing this to be low priority considering [this functionality...

"go to definition" already takes you to `tasks.py` while "go to declaration" takes you to `tasks.pyi`

imo types that need to be in quotes look gross. would prefer something that works at runtime, and ideally something that also addresses #20

looks like pyright used to support this because it was in a rejected pep. we can probably just revert 9949577cedc108274204f9bf58f6f207b63ac1d2

it should treat calls to the `deprecated` class the same as decorator usages: ```py foo = deprecated("asdf")(1) ``` this would not require any additional runtime machinery. a decorator call is...

nvm, that doesn't work: ``` TypeError: @deprecated decorator with non-None category must be applied to a class or callable, not 1 ``` so we will need to make our own...

it's saying that the category has to be `None` if you aren't using it on a class or callable (which makes sense i guess, because it's intended to create a...