monaco-languageclient
monaco-languageclient copied to clipboard
Repo hosts npm packages for monaco-languageclient, vscode-ws-jsonrpc, monaco-editor-wrapper, @typefox/monaco-editor-react and monaco-languageclient-examples
i use monaco-languageclient to render python code editor i'm using `MonacoEditorReactComp` and configured it as: - `useConfigureMonacoWorkers` is copied straight from the docs - in `CreateUserConfig` i configure `LSP` (websocket...
Hello Team, In my project, I’m using the following dependencies: ``` "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~7.0.7", "monaco-languageclient": "~8.7.0", "vscode": "npm:@codingame/monaco-vscode-api@~7.0.7", "vscode-languageclient": "~9.0.1", "vscode-ws-jsonrpc": "~3.3.2" ``` but when I run yarn install it shows...
I am using monaco-languageclient and monaco-editor-wrapper for my [DSL](https://github.com/soaibsafi/limboole-xtext-ls). I configure the react component as follows: ```jsx import React, { useEffect, useRef } from 'react'; import { MonacoEditorLanguageClientWrapper } from...
**I rewrote the Python example in the Vue3 project according to the examples(react), but encountered the following error: the theme did not take effect. Does anyone know why? Thank you...
`vscode-ws-jsonrpc` was never really improved in the last years. Some Ideas: - Simplify the API (e.g. just expose classes implementing `MessageTransports`) - Make use of sophisticated libraries (e.g socket.io /...
vscode-ws-jsonrpc depends on version 8 of vscode-jsonrpc while latest release of @codingame/monaco-languageclient depends on version 6 of vscode-jsonrpc Examples I find online show the packages acting in unison: ``` import...
I have copy pasted the code and trying to run it, the error says **Uncaught (in promise) Error: Could NOT open editor for "file:///home/nishantshuke/workspace/test.py". at ExtHostEditors.showTextDocument (extHostTextEditors.js:72:1) at async onLoad...
Hello, I was just reading the code in `packages/wrapper/src/LanguageClientWrapper.ts`, specifically `initRestartConfiguration` and noticed some issues I think are worth noting in case someone comes across this in their app: ```ts...
Hi, I am using a WebSocketUrl connection and creating a `LanguageClientWrapper` to achieve intellisense for my editor. When I shut down my server, and the websocket server is disposed, the...