Alex Carney

Results 81 issues of Alex Carney

Does this issue occur when all extensions are disabled?: N/A - VS Code Version: 1.69.2 - OS Version: Web - Browser: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0 (I have...

### Is your feature request related to a problem? Please describe. I think it would be worth trying to get to a state where the vscode-rst extension can rely on...

idea

If I use the following parameter dictionary: ``` params = {'Arrival_distributions': {'Class 0': [['Exponential', 3.0]]}, 'Service_distributions': {'Class 0': [['Exponential', 5.0]]}, 'Transition_matrices': {'Class 0': [[0.0]]}, 'Number_of_servers': ['Inf'] } ``` Ciw works...

wontfix

## Description To help drive the conversation in #257 forward here is an attempt at migrating to using `lsprotocol` for all our type definitions. **Note:** This PR was done with...

This is an attempt at fixing #268 First this commit introduces a test that runs a websocket server in a separate thread. **Note:** While the test appears to work as...

Trying to start a websocket based server I get the following error ```python >>> from pygls.server import LanguageServer >>> s = LanguageServer() >>> s.start_ws('localhost', 0) Traceback (most recent call last):...

bug

I'm using the VSCode Dev Containers extension on Linux with Podman and the following `devcontainer.json` file ```json { "name": "Ubuntu", "image": "mcr.microsoft.com/devcontainers/base:jammy", "features": { "ghcr.io/devcontainers/features/nix:1": {} } } ``` Everything...

bug
external

As mentioned in #334, I don't think we need to base our JSON-RPC implementation on an `asyncio.Protocol` object anymore. Since all we have to to is read and write some...

I'm concious of the fact #418 is a rather large PR! I've also realised that there's a growing amount of work in #418 that is not directly dependant on the...

If I register an async handler for the `shutdown` request, pygls does not guarantee that it will finish executing before responding to the client. This often leads to the client...

bug