InSync

Results 89 comments of InSync

@AlexanderBartash Thanks a lot for looking into this. This problem has been haunting my GitHub notification panel for an entire month; finally, today it stops.

As far as I'm aware, this isn't possible due to how the annotator is implemented. The Project Errors panel runs inspections in a so-called batch mode. This mode doesn't trigger...

I [found out](https://github.com/InSyncWithFoo/ryecharm/commit/8eea640e7f500b0578cd31f09623de5e222bfbd0) how to do this. Reopening as a feature request.

That this plugin sends Linux paths instead of UNC paths is intentional. You are expected to have your Pyright executable, your project and your virtual environment all located in the...

See also #93, which is the most recently WSL-related issue.

@nonara Contributions are very much appreciated! If you submit a PR, I'll review it.

The framework is used under the hood by many tests within the IntelliJ code base (and so is not specifically used to test language servers). On setup, it creates a...

While working on astral-sh/ruff#16314, I encountered three major problems, all listed at [this comment](https://github.com/astral-sh/ruff/pull/16314#issuecomment-2676178735). I'm willing to resume my work if someone could give a few hints on how to...

@carljm How about this, then? ```python def f(a: int | str): class C: def __init__(self): self.a_is_int = is_int(a) reveal_type(C().a_is_int) # TypeIs[a, int] if C().a_is_int: reveal_type(a) # int? ``` In case...