Thursday, 11 August 2022

Monaco Editor - add Python language server

I'm trying to add support for intellisense for Python in Monaco Editor. All the examples I found involve using a Python Language Server running on the server and communicating with the frontend using a websocket; however, the TS language server that Monaco runs is run inside of a browser worker, so I'm trying to emulate the same thing for Python.

I took a look at the examples at this address, but they aren't specific enough for my use case as they are very simple and don't involve running a full-fledged language server.

How can this be done?



from Monaco Editor - add Python language server

No comments:

Post a Comment